Python 列表 count() 方法
示例
返回在 fruits
列表中 "cherry" 出现的次数
fruits = ['apple', 'banana', 'cherry']
x = fruits.count("cherry")
自己试一试 »
定义和用法
count()
方法返回具有指定值的元素数量。
语法
list.count(value)
参数值
参数 | 描述 |
---|---|
value | 必填。任何类型(字符串、数字、列表、元组等)。要搜索的值。 |