This commit is contained in:
pvalarcher
2022-10-26 14:07:56 +02:00
parent 3238260b03
commit bec097d892
6 changed files with 46 additions and 1 deletions

17
python/1/ex2c.py Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python3
note = int(input("Entrer une note [entre 0 et 20] : "))
mention = ""
if (note >= 10) and (note < 12):
mention = "Passable"
print ("La note ", note, "correspond à la mention ", mention)
elif (note >=12) and (note < 14):
mention = "Assez Bien"
print ("La note ", note, "correspond à la mention ", mention)
elif note>=14 and note < 16:
mention = "Bien"
print ("La note ", note, "correspond à la mention ", mention)
elif note >= 16:
mention = "Très Bien"
print ("La note ", note, "correspond à la mention ", mention)