Untitled

mail@pastecode.io avatar
unknown
plain_text
11 days ago
125 B
1
Indexable
Never
n=int(input("Enter the number of rows:"))
for i in range(1,n+1):
  for j in range(0,i):
    print(chr(64+i),end='')
  print()
Leave a Comment