Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmolveau
GitHub Repository: gmolveau/python_full_course
Path: blob/master/exercices/ex2.py
305 views
1
word = input("please enter a word: ")
2
if "e" in word:
3
print(f"c'est non")
4
else:
5
print(f"c'est oui")
6