1word = input("please enter a word: ") 2if "e" in word: 3 print(f"c'est non") 4else: 5 print(f"c'est oui") 6