Skip to content

Commit 922ee5a

Browse files
authored
Add files via upload
1 parent 7bffcdb commit 922ee5a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

alphabet_pattern2.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
n = int(input("Enter Number of rows: "))
2+
3+
for i in range (-1, 0, n):
4+
for j in range (n + 1, i):
5+
print (chr(j+64), end = " ")
6+
print(" ")

0 commit comments

Comments
 (0)