how to search for word in string python code example
Example: how to find a word in a string python
s = "That I ever did see. Dusty as the handle on the door"index = s.find("Dusty")print(index)
s = "That I ever did see. Dusty as the handle on the door"index = s.find("Dusty")print(index)