Computer Science, asked by rajnityagi, 5 hours ago

Create a program in Python to print the squares of Numbers from 1-50.​

Answers

Answered by raj2005surya
1

Explanation:

4,9,16,25,36,49,64___________2500

Answered by MichMich0945
0

Program:

for n in range(1, 51):

   print(n * n)

Hope this helps you!

Attachments:
Similar questions