What are the methods present in tuple?

count(x): Returns the number of times x appears in the tuple.
index(x): Returns the index of the first occurrence of x in the tuple.
len(): Returns the number of elements in the tuple.
min()/max(): Returns the smallest/largest element in the tuple.
tuple(): Creates a tuple from an iterable object.

3 Likes

Correct . Keep it up , Keep practicing :boom: