85,613 views
22 votes
22 votes
Write a python program to print the square of all numbers from 0 to 10.

User Rick Eyre
by
3.1k points

1 Answer

21 votes
21 votes

Answer:

for i in range(11):

print(i**2)

User Lambidu
by
2.6k points