Post

@PythonPr Answer: D
Solution: score is initialized to 90. Let's now go through the if-elif-else ladder.
The if-condition is
score > 90
Because the value of score is 90, this condition is False.
That is because it is > and not >=
So we go the elif
score>=90 and score<90
+
English

