Computer Science, asked by ekam85, 11 months ago

c) FOR I = 1 TO 10
PRINT I*I;
NEXTI
Give the output

Answers

Answered by arnab444
0

Answer:

for i in range(1,10):

   print(i*i)

Explanation:

Answered by hkaur52
1

Answer:

The output will be

1 4 9 16 25 36 49 64 81 100

Attachments:
Similar questions