Advertisement
Sim0o0na

Excellent or Not

May 3rd, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. grade = float(input())
  2.  
  3. isExcellent = grade >= 5.50
  4. if isExcellent:
  5.     print('Excellent!')
  6. else:
  7.     print('Not excellent.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement