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 Program to Find Factorial of Number Using Recursion
Python String casefold()
Python Program to Check the File Size
Python Program to Make a Simple Calculator
Python List copy()
Python hasattr()
Python compile()
Python Global Keyword
Deep Learning with Python - Francois Cholletf
How to Get Started With Python?
Python Data Structures and Algorithms - Benjamin Baka
Python Set pop()
Python String maketrans()
Python for Loop
Deep Learning in Python - LazyProgrammer
APIs in Node.js vs Python - A Comparison
Python 3 for Absolute Beginners - Tim Hall & J.P Stacey
Python Program to Get Line Count of a File
Python sum()
Python Program to Check if a Number is Positive, Negative or 0
Python Program to Access Index of a List Using for Loop
Python Dictionary popitem()
Python Program to Find the Factorial of a Number
Python max()
Python String lstrip()
Python @property decorator
Python sorted()
Python range()
Python List insert()
Python Set intersection()
Python divmod()
Python String istitle()