count的功能 查询字符串中某个函数的个数 count的用法 name = "xiaoMixiaomi" new_name = name.count('x') print(new_name) 执行结果 2 count注意事项 如果查询的成员不存在,返回0 喜欢