We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bffcdb commit 922ee5aCopy full SHA for 922ee5a
alphabet_pattern2.py
@@ -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