跳至主要内容

count()

count() 是一种方法,用于计算 Python 元组中指定元素出现的次数。该方法返回指定元素在元组中出现的次数。

参数值

参数 说明
element

在元组中要计算的元素

返回值

Python 中的 count() 方法返回一个表示出现次数的 int

如何在 Python 中使用 count()

示例 1

count() 方法返回指定值在元组中出现的次数。

tup = (1, 2, 3, 4, 1, 1, 2)
print(tup.count(1))

元组方法