with_sun = True in_week = False if with_sun and not in_week: print("we go to the beach !") elif with_sun and in_week: print("we go to work !") else: print("we stay at home !")