Table of Contents
The count() method returns the number of times the specified element appears in the tuple.
The syntax of the count()
method is:
tuple.count(element)
1. count() Parameters
The count()
method takes a single argument:
- element – the element to be counted
2. Return value from count()
The count()
method returns the number of times element appears in the tuple.
3. Example 1: Use of Tuple 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)
Output
The count of i is: 2 The count of p is: 0
4. Example 2: Count List and Tuple Elements Inside Tuple
# 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)
Output
The count of ('a', 'b') is: 2 The count of [3, 4] is: 1
Related posts:
Python Set difference()
Python *args and **kwargs
Python Program to Parse a String to a Float or Int
Python Program to Find Numbers Divisible by Another Number
Python ord()
Python Matrices and NumPy Arrays
Python pow()
Python Program to Convert Two Lists Into a Dictionary
Python globals()
Python String isnumeric()
Python if...else Statement
Python Closures
Python List pop()
Python Program to Transpose a Matrix
Python Set update()
Python Decorators
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Python File I/O Operation
Python Program to Get the Class Name of an Instance
Python String isalpha()
Python enumerate()
Python Program to Add Two Matrices
Python List insert()
Python List Comprehension
Python Anonymous / Lambda Function
Python min()
Python locals()
Learning scikit-learn Machine Learning in Python - Raul Garreta & Guillermo Moncecchi
Python String format_map()
Python abs()
Python Set discard()
Python String rjust()