Run
my_tuple = ('apple', 'banana', 'cherry', 'fig', 'cherry') value_index = my_tuple.index('cherry', 3) print(f"Index : {value_index}")
Output