当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Tuple count()用法及代码示例


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

用法:

tuple.count(element)

参数:

count() 方法采用单个参数:

  • element- 要计算的元素

返回:

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

示例 1:使用元组 count()

# vowels tuple
vowels = ('a', 'e', 'i', 'o', 'i', 'u')

# count element 'i'
count = vowels.count('i')

# print count
print('The count of i is:', count)

# count element 'p'
count = vowels.count('p')

# print count
print('The count of p is:', count)

输出

The count of i is: 2
The count of p is: 0

示例 2:元组内的计数列表和元组元素

# random tuple
random = ('a', ('a', 'b'), ('a', 'b'), [3, 4])

# count element ('a', 'b')
count = random.count(('a', 'b'))

# print count
print("The count of ('a', 'b') is:", count)

# count element [3, 4]
count = random.count([3, 4])

# print count
print("The count of [3, 4] is:", count)

输出

The count of ('a', 'b') is: 2
The count of [3, 4] is: 1

相关用法


注:本文由纯净天空筛选整理自 Python Tuple count()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。