Computer Science, asked by Anonymous, 10 months ago

any one give program first it mark best ch Python class 10 subject computer


◆question◆make the program to print squares of first 5 natural no.​

Answers

Answered by pavithranatarajan855
0

Answer:

for i in range(1,6):

 print(i*i)

Explanation:

Similar questions