look user and return a value at a given index from a list using python code example
Example 1: how to find item in list python without indexnig
>>> ["foo", "bar", "baz"].index("bar")
1
Example 2: how to get index in python
list.index(element, start, end)