Feel like this should simply work but its not. Works when its simple if != but not when using or. I know I can do it the other way but this should work...Here is a sample
today = input('Enter Day of the week (Sun, Mon, Tue and etc) ')
if today != 'Sun' or today != 'Sat':
print ('Go to work!')
else:
print('Weekend!!')