#I do know that the f tag allows me to put varribels in a message# DOW = input("What day of the week is it? ") holiday = input("Is it a holiday? ") snooze = "You should stay in bed snoozing!" if DOW == "sat" or "sun" or holiday == "yes" : print(snooze) else: print ("get up")