Created
November 27, 2020 12:23
-
-
Save ygboucherk/1b04bc87bc45fb855a8a8a67219481fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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