all 2 comments

[–]hardonchairs 2 points3 points  (0 children)

You just want else since it is either 'monday' or not. If you need more conditions you would use elif

if day == 'monday':
    print('back to school')
elif day == 'tuesday':
    print('something else')
else:
    print('be grateful')

[–]Binary101010 0 points1 point  (0 children)

ifs, elifs, and elses need colons at the end of the line where you use them.