Answers for "list get index"

43

python find index by value

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

get index of item in list

list.index(element, start, end)
Posted by: Guest on June-30-2020
1

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
0

how to find index of list of list in python

[(i, colour.index(c))
 for i, colour in enumerate(colours)
 if c in colour]
Posted by: Guest on August-18-2020
0

python, list, index function

# vowels list
vowels = ['a', 'e', 'i', 'o', 'i', 'u']

# index of 'e' in vowels
index = vowels.index('e')
print('The index of e:', index)

# element 'i' is searched
# index of the first 'i' is returned
index = vowels.index('i')

print('The index of i:', index)
Posted by: Guest on September-28-2020
0

get index of all element in list python

indices = [i for i, x in enumerate(my_list) if x == "whatever"]
Posted by: Guest on March-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language