Python How to Find the index of an item in a List or Array
mylist = [6,8,2,5]
print "Index of 5 is: ", mylist.index(5)
print "Index of 8 is: ", mylist.index(8)
for index, value in enumerate(mylist):
print(index, value)
Watch video Python How to Find the index of an item in a List or Array online without registration, duration hours minute second in high quality. This video was added by user OSPY 14 January 2018, don't forget to share it with your friends and acquaintances, it has been viewed on our site 4,663 once and liked it 12 people.