Python String |
Search a Word in a given String
- We can use "in" keyword to search a word in a given string.
Example:
myText = "Wishing You All Happy and Healthy 2023 " searchWord = "2023" if (searchWord in myText): print(searchWord, "is present in myText variable") else: print(searchWord, "is not present in myText variable")
Program Output :
2023 is present in myText variableRecommended Articles:
Home |
Next |
No comments:
Post a Comment