My issue
the output is 1,4,9,16,25 and we are unable to catch the out format
My code
# cook your dish here
for i in range(1,6):
square=i*i
print(square)
Learning course: ATT - Python
Problem Link: Print Squares in ATT - Python
the output is 1,4,9,16,25 and we are unable to catch the out format
# cook your dish here
for i in range(1,6):
square=i*i
print(square)
Learning course: ATT - Python
Problem Link: Print Squares in ATT - Python