Python Pattern Program #27 May 18, 2020 Get link Facebook Twitter Pinterest Email Other Apps Python Pattern Program #27 Source Code: #Follow @Programmerfect n=int(input("Enter the number of rows: ")) for i in range(1,n+1): print(" "*(n-i),(chr(64+i)+" ")*i) print() Comments
Comments
Post a Comment