Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find a specific word in a list python

# if you have a srting and you want to find a specific word in that string using python lisy do this:

for x in range(len(listName)):
    if listName[x] in string:
        print("Found")
Source by www.askpython.com #
 
PREVIOUS NEXT
Tagged: #find #specific #word #list #python
ADD COMMENT
Topic
Name
9+8 =