Today is the last day of learning input, print, if, else. Tomorrow we will start new learning.
Come on, you can do it!
Learning Record
- Practice Input and print
- Practice if, nested if, and elif
- Pay attention to indentation
- When I just wrote the code, there was an error. I wrote the assignment as 🟰 instead of 🟰🟰. I looked at it for a long time and didn't understand it. It was chatgpt that taught me how to be a person.
CODE
print("Super Tips")
print("++++++++++")
varday = input("what's a few day? ")
if varday == "monday" or varday == "tuesday":
print("oh! no!")
elif varday == "wednesday" or varday == "thursday":
print("oh! hehe")
else:
print("I am happy")