Python Tutorial Python Advanced Python References Python Libraries

Python Tuple - count() Method



The Python count() method is used to find out the total number of occurrences of a specified element in the tuple.

Syntax

tuple.count(elem)

Parameters

elem Required. value of the element which need to be counted in the tuple.

Return Value

Returns total number of occurrences of a specified element in the tuple.

Example:

In the example below, tuple count() method is used to find out the total number of occurrences of 50 in the tuple called MyTuple.

MyTuple = (10, 50, 50, 100, 50, 1000)

x = MyTuple.count(50)      
print(x)

The output of the above code will be:

3

❮ Python Tuple Methods