Question 4
What will be the total number of lines printed when the following code is executed? scores = {
"Aarav": [10, 20, 30],
"Bhavna": [15, 25],
"Chirag": [12, 18, 24, 30]
}
round = 0
done = False
while not done:
done = True
for student in scores:
if round < len(scores[student]):
score = scores[student][round]
print(
f"Round {round+1}: {student} scored {score}"
)
done = False
round += 1
9
8
7
10