79213283

Date: 2024-11-22 00:31:09
Score: 1
Natty:
Report link

The issue is that you did

for i in range(10):

but Python expects this kind of format

for i in range(10):
    # code logic here
    print(i) # example way to handle it

you must always have some sort of expression after "for", "while", "def", etc. in order to let Python accept it

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: penguin55