get element by index in python code example
Example 1: get an item out of a list python
#to get the LAST item out of a list:
things = ["apple", "book", 3, ["another list", 85], "orange"]
last = things.pop()
print(last)
#it should output "orange"
Example 2: python get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)