79595592

Date: 2025-04-28 00:05:52
Score: 1.5
Natty:
Report link

It is because you have a break statement at the end of your loop, cutting it off after the first run.

Rewrite it like this:

for i in range(5):
    print(i)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mitsokou