Computer Science, asked by prasadsourav2004, 10 months ago

find element index position in tuple without using index()??
Fast

Answers

Answered by Anonymous
0

Answer:

Python Tuple index()

The index() method searches an

element in a tuple and returns its index. In simple terms, index() method searches for the given element in a tuple and returns its position. However, if the same element is present more than once, the first/smallest position is returned.

Similar questions