Alphabetic Symbol
Write a program to print the right alphabetic triangle up to the given N rows.Input
The input will be a single line containing a positive integer (N).Output
The output should be N rows with letters.
Note: There is a space after each letter.Explanation
For example, if the given number of rows is 4,
your code should print the following pattern.
A
A B
A B C
A B C D
# Get N
N = int(input("Enter N: "))
for r in range(0, N+1):
# Display letter
for i in range(65, 65+r):
print(chr(i), end=" ")
# Display new line
print(" ")
Comments
Leave a comment