Python | Count occurrences of an element in a Tuple
Last Updated :
03 Nov, 2022
In this program, we need to accept a tuple and then find the number of times an item is present in the tuple. This can be done in various ways, but in this article, we will see how this can be done using a simple approach and how inbuilt functions can be used to solve this problem.
Examples:
Tuple: (10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
Input : 4
Output : 0 times
Input : 10
Output : 3 times
Input : 8
Output : 4 times
Method 1(Simple Approach):
We keep a counter that keeps on increasing if the required element is found in the tuple.
Python3
# Program to count the number of times an element
# Present in the list
def countX(tup, x):
count = 0
for ele in tup:
if (ele == x):
count = count + 1
return count
# Driver Code
tup = (10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
enq = 4
enq1 = 10
enq2 = 8
print(countX(tup, enq))
print(countX(tup, enq1))
print(countX(tup, enq2))
Method 2(Using count()):
The idea is to use method count() to count number of occurrences.
Python3
# Program to count the number of times an element
# Present in the list
# Count function is used
def Count(tup, en):
return tup.count(en)
# Driver Code
tup = (10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
enq = 4
enq1 = 10
enq2 = 8
print(Count(tup, enq), "times")
print(Count(tup, enq1), "times")
print(Count(tup, enq2), "times")
Output0 times
3 times
4 times
Method 3: Using list comprehension
Python3
tuple1 = (10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
x = [i for i in tuple1 if i == 10]
print("the element 10 occurs", len(x), "times")
Outputthe element 10 occurs 3 times
Method #4: Using enumerate function
Python3
tuple1=(10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
x=[i for a,i in enumerate(tuple1) if i==10]
print("the element 10 occurs",len(x),"times")
Outputthe element 10 occurs 3 times
Method #5: Using lambda function
Python3
tuple1=(10, 8, 5, 2, 10, 15, 10, 8, 5, 8, 8, 2)
x=list(filter(lambda i: (i==10),tuple1))
print("the element 10 occurs",len(x),"times")
Outputthe element 10 occurs 3 times
Method #6: Using counter function
Python3
from collections import Counter
tuple1=("10", "8", "5", "2", "10", "15", "10", "8", "5", "8", "8", "2")
x=Counter(tuple1)
print("the element 10 occurs",x["10"],"times")
Outputthe element 10 occurs 3 times
Method#7: Using Countof function
Python3
tuple1=("10", "8", "5", "2", "10", "15", "10", "8", "5", "8", "8", "2")
import operator as op
print(op.countOf(tuple1,"10"))
Similar Reads
Count occurrences of an element in a list in Python A common task when working with lists is to count how many times a specific element appears. In Python, we have several ways to count occurrences of an element using both built-in and custom methods.The simplest and most straightforward way to count occurrences of an element in a list is by using th
2 min read
Count occurrences of a character in string in Python We are given a string, and our task is to count how many times a specific character appears in it using Python. This can be done using methods like .count(), loops, or collections.Counter. For example, in the string "banana", using "banana".count('a') will return 3 since the letter 'a' appears three
2 min read
Python - Count the elements in a list until an element is a Tuple The problem involves a list of elements, we need to count how many elements appear before the first occurrence of a tuple. If no tuple is found in the list, return the total number of elements in the list. To solve this, initialize a counter and use a while loop to iterate through the list, checking
2 min read
Python - Find all elements count in list In Python, counting the occurrences of all elements in a list is to determine how many times each unique element appears in the list. In this article, we will explore different methods to achieve this. The collections.Counter class is specifically designed for counting hashable objects. It provides
3 min read
Count the occurrence of a certain item in an ndarray - Numpy In this article, the task is to find out how to count the occurrence of a certain item in an nd-Array in Python. Example Array = [[ 0 1 2 3] [ 4 5 2 7] [ 8 2 10 11]] Input: element = 2 Output: 3 timesCount the occurrence of a certain item in an array using a loop Here we are using a loop to count th
3 min read