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