Hello to anyone this message may reach. I am having issues with a semantic error that I just cant quite figure out. I am very new to coding and I am trying to learn python 3. I am trying to create a code that lets me know if I have to work on a particular day of the week. I have done this by using if statements but I cannot get the code to go to the else or elif for some reason. Any and all answers will be helpful. Thanks in advance.
week_day_1 = "Monday"
week_day_2 = "Tuesday"
week_day_3 = "Wednesday"
week_day_4 = "Thursday"
half_week_day = "Friday"
weekend_day_1 = "Saturday"
weekend_day_2 = "Sunday"
week_days = week_day_1, week_day_2, week_day_3, week_day_4
weekend_days = weekend_day_1, weekend_day_2
weekend_days = True
week_days = True
half_week_day = True
input("What day of the week is it?") #the input allows the user to insert the day of the week.
if week_days:
print("You must go to work.")
elif weekend_days:
print("It is the weekend. Enjoy your time off.")
elif half_week_day:
print("You must go to work, but your weekend start once you clock out.")
else:
print("Please enter day of the week.")**
No matter what day I input the code returns back "You must go to work"