mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
12 lines
232 B
Python
12 lines
232 B
Python
note = int(input("Note au bac (sur 20) : "))
|
|
|
|
if note < 10:
|
|
print("recalé")
|
|
elif note < 12:
|
|
print("Pas de mention")
|
|
elif note < 14:
|
|
print("Assez bien")
|
|
elif note < 16:
|
|
print("Bien")
|
|
else:
|
|
print("Félissitation") |