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 Dictionary popitem()
Python Anonymous / Lambda Function
Python Exception Handling Using try, except and finally statement
Python id()
Python Program to Generate a Random Number
Python Program to Print Output Without a Newline
Python Program to Check Prime Number
Python dict()
Python String isprintable()
Python globals()
Python Program to Find HCF or GCD
Python issubclass()
Python String endswith()
Python List extend()
Python exec()
Python Program to Print all Prime Numbers in an Interval
Python Sets
Python List remove()
Python Machine Learning Eqution Reference - Sebastian Raschka
Python Program to Calculate the Area of a Triangle
Python Program to Compute all the Permutation of the String
Python int()
Python Program to Create a Countdown Timer
Python Dictionary
Python set()
Python iter()
Python Numbers, Type Conversion and Mathematics
Python Machine Learning - Sebastian Raschka
Python Program to Capitalize the First Character of a String
Python Errors and Built-in Exceptions
Python String isdecimal()
Python Deeper Insights into Machine Learning - Sebastian Raschka & David Julian & John Hearty