Python Tuple count()

The count() method returns the number of times the specified element appears in the tuple.

Example


count() Syntax

The syntax of the count() method is:

vowels.count('i')

Here, vowels is the tuple and 'i' is an element to count.


count() Parameter

The count() method takes a single parameter:

  • 'i' - an element to count in the tuple

count() Return Value

The count() method returns:

  • a number of times the given element i is present in the tuple

Example 1: Python Tuple count()

Output

The count of 1 is: 3
The count of 7 is: 0

In the above example, we have used the count() method to count the number of times the elements 1 and 7 appear in the tuple.

Here, the tuple numbers tuple (1,3,4,1,6,1) contains three 1's and doesn't contain the number 7. Hence, its count in the tuple is 3 and 0 respectively.


Example 2: count() to Count List and Tuple Elements Inside Tuple

Output

The count of tuple ('a', 'b') is: 2
The count of list [3, 4] is: 1

In the above example, we have used the count() method to count the number of lists and tuples inside the tuple random.

The tuple ('a', 'b') appears twice and the list [3, 4] appears once. Hence, its count in the tuple is 2 and 1 respectively.