在Python中,可以使用count()
方法來統計特定元素在列表中的個數。例如:
my_list = [1, 2, 3, 1, 4, 1, 5]
count = my_list.count(1)
print(count) # 輸出:3
如果要統計特定元素在字符串中的個數,可以使用count()
方法。例如:
my_string = "hello world"
count = my_string.count('l')
print(count) # 輸出:3
另外,還可以使用collections模塊中的Counter類來統計元素的個數。例如:
from collections import Counter
my_list = [1, 2, 3, 1, 4, 1, 5]
counter = Counter(my_list)
print(counter[1]) # 輸出:3