Computer Science, asked by tejrajjj, 5 months ago

A Python program has been given below. Rewrite this code using For loop.​

Attachments:

Answers

Answered by anindyaadhikari13
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