Answers for "condition where python"

2

condition python

ensoleille = False
neige = True

if ensoleille:
   print("on va à la plage !")
elif neige:
   print("on fait un bonhomme de neige")
else:
   print("on reste à la maison !")
Posted by: Guest on November-10-2021
0

condition python

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 !")
Posted by: Guest on November-10-2021

Code answers related to "condition where python"

Python Answers by Framework

Browse Popular Code Answers by Language