Advertisement
Spocoman

01. Excellent Result

Dec 10th, 2021
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. result = float(input())
  2. if result >= 5.5:
  3.     print('Excellent!')
  4.  
  5.  
  6. Taрикатско решение:)
  7.  
  8. print('Excellent!' if 5.5 <= float(input()) <= 6 else '')
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement