We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4369b21 commit 8d58950Copy full SHA for 8d58950
1 file changed
how-to-exit-loops-early-with-python-break-keyword/for_loop_test_scores_example.py
@@ -5,5 +5,4 @@
5
for score in scores:
6
if score < failed_score:
7
num_failed_scores += 1
8
-
9
-print(f"Number of failed tests: {num_failed_scores}")
+print(f"Number of failed tests: {num_failed_scores}")
0 commit comments