Python Pattern Program #35
Source Code:
#Follow - Programmerfect
n=int(input("Enter the number of rows: "))
for i in range(1,n+1):
print(" "*(n-i),(str(i)+" ")*(2*i-1))
n=int(input("Enter the number of rows: "))
for i in range(1,n+1):
print(" "*(n-i),(str(i)+" ")*(2*i-1))