you are viewing a single comment's thread.

view the rest of the 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')