Answers for "python get list position"

43

python find index by value

>>> ["foo", "bar", "baz"].index("bar")
1
Posted by: Guest on November-19-2019
5

how to find the position in a list python

lst = [4, 6, 5]
lst.index(6) # will return 1
Posted by: Guest on October-15-2020

Code answers related to "python get list position"

Python Answers by Framework

Browse Popular Code Answers by Language