list in python indexing code example
Example 1: python lists
fruits = ['apple', 'banana', 'mango', 'cherry']
for fruit in fruits:
print(fruit)
Example 2: python get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)