Python Tuple count() Method

❮ Tuple Methods


Example

Return the number of times the value 5 appears in the tuple:

thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)

x = thistuple.count(5)

print(x)
Try it Yourself »

Definition and Usage

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


Syntax

tuple.count(value)

Parameter Values

Parameter Description
value Required. The item to search for

❮ Tuple Methods

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.