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