top of page

Python program to print series 1,4,9......15 terms

  • Writer: Rajesh Singh
    Rajesh Singh
  • May 23, 2021
  • 1 min read

Program:

for i in range(1,16):

j=i*i

print(j)

Output:

1 4 9 16 25 36..................225

Python program to print series 1,4,9......15 terms Video:





Recent Posts

See All

Comments


bottom of page