check if text is in txt file python code example
Example 1: how to check for a particular word in a text file using python
file = open("search.txt")
print(file.read())
search_word = input("enter a word you want to search in file: ")
if(search_word in file.read()):
print("word found")
else:
print("word not found")
Example 2: check if file is txt python
Assuming m is a string, you can use endswith:
if m.endswith('.mp3'):
...
elif m.endswith('.flac'):
...
To be case-insensitive, and to eliminate a potentially large else-if chain:
m.lower().endswith(('.png', '.jpg', '.jpeg'))