get item in list python code example
Example 1: python find item in list
>>> ["foo", "bar", "baz"].index("bar")
1
Example 2: python get element from list
my_list = ["pizza", "soda", "muffins"]
my_list[0]
my_list[-1]
my_list[:]
my_list[:-1]
Example 3: how to find an element in a list python
streaming = ['netflix', 'hulu', 'disney+', 'appletv+']
index = streaming.index('disney+')
print('The index of disney+ is:', index)
Example 4: how to index lists in python
list = ['bananas', 'apples', 'watermellon']
print(list[1])
Example 5: python get element by index
ind = lst.index(x)