demo_ref_list_index2.py:
fruits = [4, 55, 64, 32, 16, 32] x = fruits.index(32) print(x)
➜ begtut>python demo_list_index2.py
3