Python中count函數(shù)是用于統(tǒng)計(jì)某個元素在列表、字符串或元組中出現(xiàn)的次數(shù)的方法。其語法格式為:count(element),其中element表示要統(tǒng)計(jì)的元素。
示例:
numbers = [1, 2, 3, 3, 4, 3]
count = numbers.count(3)
print(count) # 輸出:3
text = "Hello, World!"
count = text.count('o')
print(count) # 輸出:2
data = (1, 2, 3, 4, 4, 4)
count = data.count(4)
print(count) # 輸出:3
需要注意的是,count方法只能用于可迭代對象(如列表、字符串、元組),對于字典等不支持迭代的類型無法使用count方法。