Archived
1
0
Fork 0
This repository has been archived on 2024-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
PY4E/Assignment 3.3/main.py

17 lines
239 B
Python
Raw Normal View History

2021-09-08 10:33:48 -05:00
score = input("Enter Score: ")
try:
score = float(score)
except:
score = 0
if score >= 0.9:
print("A")
elif score >= 0.8:
print("B")
elif score >= 0.7:
print("C")
elif score >= 0.6:
print("D")
else:
print("F")