Computer Science, asked by nikhilkumar4567b94, 1 month ago

write a Python program to display the square of number 1 to 10​

Answers

Answered by Falcon06
0

Answer:

for i in range(1, 11):

   print(i)

This should satisfy you answer and please mark as Brainlest.

Explanation:

Similar questions