loops in python

Python Program on Loops 0

Python Program on Loops

Program 1 # 1 4 9 16 25 ……. n # n=int(input(“Enter the limit”)) # i=1 #intilization # while(i<=n): # print(i*i,end=” “) # i=i+1 # WAP to print table of number # n=int(input(“Enter a...