0
I'm a little confused on this.
#Ask about their day Question = input ("How is your day?") (True == "good" or "Good" or "Great" or "great") if input==True print("Awesome") else print("Why?") This is what I have so far. I'm trying to get if they say good or great they will receive awesome but if they say anything else they will receive why.
2 ответов
+ 8
Question = input ("How is your day?")
if Question in ("good", "Good", "Great", "great"):
print("Awesome")
else:
print("Why?")
+ 5
You need indentation for Python
https://www.sololearn.com/learn/Python/2277/?ref=app