Computer Science, asked by rxharrisns, 7 months ago

9. Rewrite the following code in python after removing all syntax error(s). Underline each correction done in the code.

30=To

for K in range(0,To)

IF k%4==0:

Print(k*4)

Else:

Print(k+4) 4​

Answers

Answered by Anonymous
3

Answer:

hi...

Explanation:

To=30

for k in range(0,To):

if k%4==0:

print(k*4)

else:

print(k+4)*4

hope it helps you ☺️

Similar questions