Create a function that returns the index or indices of all occurrences of an item in the list. python code example
Example: how to find item in list python without indexnig
>>> ["foo", "bar", "baz"].index("bar")
1
>>> ["foo", "bar", "baz"].index("bar")
1