Python中count函數是用于統計某個元素在列表、字符串或元組中出現的次數的方法。其語法格式為:count(element),其中element表示要統計的元素。
示例:
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方法。