how to call list in python code example
Example 1: python how to call a number from a list
list = ["man", "I", "love", "Taco"]
print(list[0])
Example 2: python get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)