Python 列表 count() 方法
Python基础 2022-06-06 15:26:24小码哥的IT人生shichen
Python 列表 count() 方法
实例
返回 "cherry" 在 fruits 列表中出现的次数:
fruits = ['apple', 'banana', 'cherry']
x = fruits.count("cherry")
完整实例:
fruits = ["apple", "banana", "cherry"]
x = fruits.count("cherry")
print(x)
定义和用法
count() 方法返回具有指定值的元素数量。
语法
list.count(value)
参数值
参数 | 描述 |
---|---|
value | 必需。任何类型(字符串、数字、列表、元组等)。要搜索的值。 |
更多实例
示例代码:
返回数值 9 在列表中出现的次数:
points = [1, 4, 2, 9, 7, 8, 9, 3, 1]
x = points.count(9)
完整实例:
fruits = [1, 4, 2, 9, 7, 8, 9, 3, 1]
x = fruits.count(9)
print(x)