Answers for "python how to find location in list"

1

how to get location of word in list in python

l = ['a','b','c']
print(l.index('b'))
----------------------------------
>1
Posted by: Guest on August-19-2020
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 how to find location in list"

Python Answers by Framework

Browse Popular Code Answers by Language