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 the Factorial of a Number
Python Tuple index()
Python String isprintable()
Python bin()
Python for Programmers with introductory AI case studies - Paul Deitel & Harvey Deitel
Python Program to Get File Creation and Modification Date
Python exec()
Python Program to Safely Create a Nested Directory
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Python String rsplit()
Python Program to Find the Sum of Natural Numbers
How to Get Started With Python?
Python dir()
Python Custom Exceptions
Python Program to Generate a Random Number
Python String isnumeric()
Python Program Read a File Line by Line Into a List
Python List index()
Python String isalpha()
Python range()
Python Program to Count the Number of Digits Present In a Number
Python String zfill()
Python Program to Find Factorial of Number Using Recursion
Python sum()
Python int()
Python Program to Calculate the Area of a Triangle
Python Program to Extract Extension From the File Name
Python Program to Find LCM
Python Program to Find HCF or GCD
Python Program to Differentiate Between type() and isinstance()
Python enumerate()
Python Dictionary pop()