I'm trying to write a simple code that will tell me if the date that I need to do something falls on a weekend. When I run this code I get the "change day" regardless of the day of the week, there is obviously something wrong with the code but I can't see it
if week_Days[movePlates.weekday()] == "Saturday" or "Sunday":
print("change day " + str(week_Days[movePlates.weekday()]))
else:
print("move plates on: " + str(movePlates))
if week_Days[readPlates.weekday()] == "Saturday" or "Sunday":
print("change day " + str(week_Days[readPlates.weekday()]))
else:
print("read plates on: " + str(readPlates))
Change day Sunday Change day Thursday