Comment vérifier un mot particulier dans un fichier texte à l'aide de 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")
Faithful Fowl