Skip to content

Instantly share code, notes, and snippets.

@ygboucherk
Created November 27, 2020 12:23
Show Gist options
  • Save ygboucherk/1b04bc87bc45fb855a8a8a67219481fe to your computer and use it in GitHub Desktop.
Save ygboucherk/1b04bc87bc45fb855a8a8a67219481fe to your computer and use it in GitHub Desktop.
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:
print("brûlant")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment