本教程的操作环境:windows7系统,Python 3.9.1,DELL G3电脑。
1、count()
用于统计字符串中某个字符的数量。可选参数为字符串检索的开始和结束。字符串中返回子字符串的次数。
count()方法语法
list.count(obj)
参数
obj,统计列表中的对象。
实例
defcount_each_char_1(string): res={} foriinstring: ifinotinres: res[i]=1 else: res[i]+=1 returnres print(count_each_char_1('aenabsascd'))
2、List count()
用于统计列表中某些元素的次数。列表中返回元素的次数。
aList=[123,'Google','Runoob','Taobao',123]; print("123元素数:",aList.count(123)) print("Taobao元素的个数",aList.count('Taobao'))
以上是python统计字符串字符的出现次数,可以通过count()轻松解决,类似于它的List count()能够统计列表中的元素,每个人都可以尝试使用这种元素。更多Python学习指导:基础教程python基础教程