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