days = ["lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi", "dimanche"]12for day in days:3if day == "lundi" or day == "mardi" or day == "mercredi" or day == "jeudi":4print("travail")5elif day == "vendredi":6print("soon w-e")7else:8print("BBQ")910for day in days:11if day in ["lundi", "mardi", "mercredi", "jeudi"]:12print("travail")13elif day in ["samedi", "dimanche"]:14print("BBQ")15else:16print("soon -we")1718# pour chaque jour dans jours:19# si jour est lundi ou mardi ou mercredi ou jeudi20# imprimer travail21# si jour est vendredi22# imprimer soon w-e23# si jour est samedi ou dimamche24# imprimer BBQ2526