最近工作上遇到了处理数据的问题,需要统计一个文件里某个字符串的出现次数,使用了count函数,效果很好,这里分享一下count函数的使用。
count函数是Python内置函数,用于统计某个元素在序列中出现的次数,使用方法如下:
list.count(obj)
str.count(sub[, start[, end]])
tuple.count(obj)
其中obj为要统计的元素,sub为要统计的子串,start和end为可选参数,表示计数范围的起始位置和结束位置。
下面举个例子:
a = 'I love Python, Python is the best language!'
print(a.count('Python')) #输出2
print(a.count('i')) #输出1
另外,count函数还可以用于统计列表中某个元素出现的次数:
b = [1,2,3,4,5,5,5]
print(b.count(5)) #输出3