Patterns in Python

 


n=int(input("Enter the value of n: "))

for i in range(1,n+1):

    for j in range(1,i+1):

            print(j*2-1,end='')

    print()













Comments

Popular Posts