Create a program to print the square of numbers between 1 to 30 using while loop ?python
Answers
Answered by
6
count = 1
while count <=30 :
print (count **2)
count = count + 1
Similar questions