The following code contains several nested if-else statements. Unfortunately, it was written without proper alignment and indentation. Rewrite the code and use the proper conventions of alignment and indentation.
if score >= A_SCORE:print('Your grade is A.')else:if score >= B_SCORE:print('Your grade is B.')else:if score >= C_SCORE:print('Your grade is C.')else:if score >= D_SCORE:print('Your grade is D.')else:print('Your grade is F.')
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.