how to get list item in python code example
Example 1: making lists in python
# list with numbers
list = [10, 20, 30]
# list with strings
list = ["john", "kai", "albert"]
# mixed data
list = ["john",1 ,True ]
Example 2: python get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)