[Solved] Syntax error in a for loop in python [closed]


If you want to use a range, then you need to call the function:

for j in range(row):

range is not part of the Python syntax, it is just another built-in object type.

1

solved Syntax error in a for loop in python [closed]