Question: score = int(input(Enter assignment score: )) if score >= 95: grade = A+ elif score >= 90: grade = A # Complete this conditional statement
score = int(input("Enter assignment score: ")) if score >= 95: grade = "A+" elif score >= 90: grade = "A" # Complete this conditional statement using the rest of the scale # B+ # B # C # D # ...
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
