Answers for "create condition in python"

0

condition python

avec_soleil = True
en_semaine = False

if avec_soleil and not en_semaine:
   print("on va à la plage !")
elif avec_soleil and en_semaine:
   print("on va au travail !")
else:
   print("on reste à la maison !")
Posted by: Guest on November-10-2021

Code answers related to "create condition in python"

Python Answers by Framework

Browse Popular Code Answers by Language