A school has the following rules for its grading system:

A. Below 25 - F
B. 25 to 45 - E
C. 46 to 50 - D
D. 51 to 60 - C
E. 61 to 80 - B
F. Above 80 - A

Which of the following is a correct implementation if only whole numbers (integers) are allowed?

Answer :

score = input("Enter your score")

score = int(score)

if score < 25:

print("F")

elif score >= 25 and score < 45:

print("E")

elif score >= 45 and score < 50:

print("D")

elif score >= 50 and score < 60:

print("C")

elif score >= 60 and score < 80:

print("B")

else:

print("A")

In order to create a hard copy (printed copy) of the electronic data being printed, a computer transfers data to a computer printer. For instance, you may write your resume in a word processor, print copies of it, and mail them to various employers.

Here you can learn more about print in the link brainly.com/question/27646993

#SPJ4

Other Questions