Utilisateur:Clairebravo
Révision datée du 11 octobre 2021 à 09:56 par Clairebravo (discussion | contributions) (Page créée avec « <syntaxhighlight lang="python"> ------------------------ print("tu t'es couché à quelle heure hier?") hour = input("je me suis couché à ") print(f"ah, tu t'es couch... »)
<syntaxhighlight lang="python">
print("tu t'es couché à quelle heure hier?")
hour = input("je me suis couché à ")
print(f"ah, tu t'es couché à " + hour + " heure!")
hour = int (hour)
if hour < 21 :
print ("c'est tôt, t'as du bien dormir")
elif hour < 23 :
print ("ah, une bonne nuit de sommeil alors!")
elif hour > 23 :
print ("t'as l'air fatigué mon con")
print("comment ça va?")
answer = input("oh, aujourd'hui ça va ")
print(f"ah, tu vas" + answer + "...!")
if answer == "bien" :
print ("nice, bonne journée alors")
elif answer == "bof" :
print ("ça ira mieux demain")
elif answer == "pas bien":
print ("ah......")
elif answer == "super":
print ("yay!")
</syntaxhighlight lang="python">