Untitled
unknown
plain_text
a year ago
125 B
9
Indexable
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()Editor is loading...
Leave a Comment
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()