Study Notes
- Practice Input and print
- Practice if, nested if, and elif
- Pay attention to indentation
- When I just wrote the code, I made a mistake by writing 🟰 as 🟰🟰. I couldn't understand it after looking at it for a long time, so I asked chatgpt to teach me.
CODE
print("Super Tips")
print("++++++++++")
varday = input("What's your day? ")
if varday == "monday" or varday == "tuesday":
print("oh! no!")
elif varday == "wednesday" or varday == "thursday":
print("oh! hehe")
else:
print("I am happy")