Answers for "which index number in array python"

1

python array get index

array = ["foo", "bar", "baz"].index("bar")
1
Posted by: Guest on September-11-2021
0

position in array python

a_list = [1, 2, 3]

position_of_three = a_list.index(3)

print(position_of_three)
Posted by: Guest on October-04-2020

Code answers related to "which index number in array python"

Python Answers by Framework

Browse Popular Code Answers by Language