例如:
返回字符串'cherry'出现在fruits
列表中的次数:
fruits = ['apple', 'banana', 'cherry']x = fruits.count("cherry")print(x)
1、定义和用法
count()
方法返回具有指定值的元素数。
2、调用语法
list.count(value)
3、参数说明
参数 | 描述 |
value | 必需的参数,任何类型(字符串,数字,列表,元组等)。 要计算元素个数的值。 |
4、使用示例
例如:
返回值9出现在列表中的次数:
points = [1, 4, 2, 9, 7, 8, 9, 3, 1]x = points.count(9)print(x)