Answers for "get index from a list python"

19

python index method

my_string = "Hello World!"

my_string.index("l") # outputs 2
# this method only outputs the index of the first "l" value in the string/list
Posted by: Guest on June-07-2020
0

python get item from list by index

list1 = ['physics', 'chemistry', 1997, 2000];
list2 = [1, 2, 3, 4, 5, 6, 7 ];

print("list1[0]: ", list1[0])
print("list2[1:5]: ", list2[1:5])

# Results:
# list1[0]:  physics
# list2[1:5]:  [2, 3, 4, 5]
Posted by: Guest on July-06-2021

Code answers related to "get index from a list python"

Python Answers by Framework

Browse Popular Code Answers by Language