Commande de question Python
Question = input("How are you")
if Question == "Great!":
print("Me too!")
elif Question == "Bad":
print(":(")
else:
print("Please anwser 'Great' or 'Bad'")
Noice NOOB