Answers for "how to find a position in a list python"

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
1

how to index lists in python

# Make the list
list = ['bananas', 'apples', 'watermellon']
# Print the word apples from the list
print(list[1])
Posted by: Guest on March-29-2020

Code answers related to "how to find a position in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language