Initial commit
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
# Valeur de départ à changer au besoin pour tester
|
||||
value = 8
|
||||
|
||||
# Tester plusieurs cas de figure s'excluant progressivement
|
||||
if value >= 9:
|
||||
print("Élevé")
|
||||
elif value >= 7:
|
||||
print("Haut")
|
||||
elif value >= 4:
|
||||
print("Standard")
|
||||
else:
|
||||
print("Bas")
|
Reference in New Issue
Block a user