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 datetime
Python super()
Python Machine Learning Cookbook - Practical solutions from preprocessing to Deep Learning - Chris A...
Python Set intersection()
Python Program to Convert Celsius To Fahrenheit
Python Program to Add Two Numbers
Python getattr()
Python String swapcase()
Python Program to Check Armstrong Number
Python Get Current time
Python String title()
Python Program to Count the Number of Digits Present In a Number
Python String rindex()
Python Set remove()
Python Program to Trim Whitespace From a String
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Program to Iterate Through Two Lists in Parallel
Python Set add()
Python Program to Find Armstrong Number in an Interval
Python String capitalize()
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Python Program to Display Calendar
Python String translate()
Python Program to Randomly Select an Element From the List
Python Program to Compute the Power of a Number
Python *args and **kwargs
Python Program to Access Index of a List Using for Loop
Python String rstrip()
Python id()
Python Function Arguments
Python slice()
Python Closures