count()是Python中的内置函数。 它将返回列表中给定元素的总数。 count()函数用于对列表中的元素以及字符串进行计数。
count()是Python中的内置函数。 它将返回您列表中给定元素的计数。
句法:
list.count(element)
参数:
element:您要查找计数的元素。
返回值:
count()方法将返回一个整数值,即给定列表中给定元素的计数。 如果在给定列表中找不到该值,则返回0。
以下示例显示了list()函数的工作方式:
list1 = ['red', 'green', 'blue', 'orange', 'green', 'gray', 'green']
color_count = list1.count('green')
print('The count of color: green is ', color_count)
Output:
The count of color: green is 3
list1 = [2,3,4,3,10,3,5,6,3]
elm_count = list1.count(3)
print('The count of element: 3 is ', elm_count)
Output:
The count of element: 3 is 4