Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. def resultat_bac(note):
  2.    
  3.     if note >=10 and note <=10 :
  4.         return print("passable")
  5.     if note >=0 and note <=7 :
  6.         return print("ajournée")
  7.     if note == 12  :
  8.         return print("assez bien")
  9.     if note >=13 and note <=14 :
  10.         return print("bien")
  11.     if note >=15 and note <=20 :
  12.         return print("trés bien")
  13.     if note < 8:
  14.         return print("non admis")
  15.     if note >=8 and note <=10:
  16.         return print("admis à la seconde session")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement