Utilisateur:Clairebravo

De {}
Aller à la navigation Aller à la recherche
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!")