print("What day is it? Please don't use caps")
dayOfTheWeek = input()

#Answer accordingly
if(dayOfTheWeek == "monday" or dayOfTheWeek == "wednesday"):
    print("In PE today, you have kickball")
else: 
    if(dayOfTheWeek == "tuesday"):
        print("In PE today, you have a run and classroom time")
    else: 
        if(dayOfTheWeek == "thursday"):
            print("In PE today, you have a run and kickball")
        else: 
            if(dayOfTheWeek == "friday"):
                print("In PE today, you have the weight room")
            else:
                if(dayOfTheWeek == "saturday" or dayOfTheWeek == "sunday"):
                    print("It's the weekend silly")
                else: 
                    print("That's not a day of the week. If you think it is, make sure there are no caps and check your spelling")
What day is it? Please don't use caps
In PE today, you have the weight room