The correct output will be:
A. IdentationError
What will be the output of these lines of code?
for i in range (1, 5):
print (i)
A. IdentationError
B. PrintError
C. 1234
D. 12345
1 answer
for i in range (1, 5):
print (i)
A. IdentationError
B. PrintError
C. 1234
D. 12345
1 answer