Skip to content

Instantly share code, notes, and snippets.

View ygboucherk's full-sized avatar
💭
I may be slow to respond.

ygboucherk

💭
I may be slow to respond.
View GitHub Profile
def ressenti(T):
if T <= 0:
print("gelé")
elif 0 < T <= 12:
print("froid")
elif 12 <= T < 25:
print("confortable")
elif 25 <= T < 75:
print("chaud")
elif T >= 75: