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 cmp()用法及代碼示例
- Python Tuple len()用法及代碼示例
- Python Tuple min()用法及代碼示例
- Python Tuple index()用法及代碼示例
- Python Tuple tuple()用法及代碼示例
- Python Tuple max()用法及代碼示例
- Python Tuples轉Dictionary用法及代碼示例
- Python Tuple轉integer用法及代碼示例
- Python Thread join()用法及代碼示例
- Python Tensorflow asin()用法及代碼示例
- Python Thread run()用法及代碼示例
- Python Tensorflow nn.sigmoid()用法及代碼示例
- Python TextBlob.correct()用法及代碼示例
- Python Tensorflow math.accumulate_n()用法及代碼示例
- Python Tensorflow cosh()用法及代碼示例
- Python TextCalendar prmonth()用法及代碼示例
- Python Tensorflow acos()用法及代碼示例
- Python Tensorflow asinh()用法及代碼示例
- Python Tensorflow nn.softplus()用法及代碼示例
- Python Tensorflow exp()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Tuple count()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。