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