Answers for "return the position of a value in a list python"

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
2

python get index and value from list

test = [ 'test 1', 'test 2', 'test 3' ]
for index, value in enumerate( test ):
  print( index, value )
Posted by: Guest on October-18-2020

Code answers related to "return the position of a value in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language