Skip to content

Instantly share code, notes, and snippets.

View Spandhana9788's full-sized avatar

shilpa v Spandhana9788

View GitHub Profile
@Spandhana9788
Spandhana9788 / aa.py
Created March 1, 2020 15:55
Write a program to prompt for a score between 0.0 and 1.0. If the score is out of range, print an error. If the score is between 0.0 and 1.0, print a grade using the following table: Score Grade >= 0.9 print A, Grade >= 0.8 print B, Grade >= 0.7 print C, Grade>= 0.6 print D, Grade < 0.6 print F If the user enters a value out of range, print an e…
score=float(input("enter the number"))
if score>1.0 or score<0.0:
print("error")
elif score>=0.9:
print("A")
elif score>=0.8:
print("B")
elif score>=0.7:
print("C")
elif score>=0.6: