write a program in python to print the square of numbers in range
Answers
Answered by
0
Answer:
for i in range (1,10)
print i * i
end
Similar questions