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 super()
Python Tuple
Python Program to Get a Substring of a String
Python Program to Compute the Power of a Number
Python Machine Learning Cookbook - Practical solutions from preprocessing to Deep Learning - Chris A...
Python Program to Convert Bytes to a String
Python Program to Get the Last Element of the List
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Python Functions
Python String partition()
Python eval()
Python Set symmetric_difference_update()
Python Directory and Files Management
Applied Text Analysis with Python - Benjamin Benfort & Rebecca Bibro & Tony Ojeda
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Python timestamp to datetime and vice-versa
Python Program to Compute all the Permutation of the String
Python String swapcase()
Python Program to Find HCF or GCD
Python time Module
Python List remove()
Python Program to Find All File with .txt Extension Present Inside a Directory
Python open()
Python List extend()
Python Program to Count the Occurrence of an Item in a List
Python List pop()
Python print()
Python String isidentifier()
Python list()
Python String expandtabs()
Python Package
Python Exception Handling Using try, except and finally statement