A Python program has been given below. Rewrite this code using For loop.
Attachments:
Answers
Answered by
9
Answer:-
This is the converted code snippet.
answer=1
for n in range(10,101,3):
answer=answer+n**2
print(answer)
Similar questions