Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to search for an item in a list in python

l = [1, 2, 3, 4, 5, 6, 7, 8, 9]
index_of_4 = l.index(4)
print(index_of_4)
##output:
## 3
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #search #item #list #python
ADD COMMENT
Topic
Name
2+4 =