We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 229f8d6 commit 8ddc005Copy full SHA for 8ddc005
printing pattern
@@ -0,0 +1,5 @@
1
+rows = 5
2
+for row in range(1, rows+1):
3
+ for column in range(1, row + 1):
4
+ print(column, end=' ')
5
+ print("")
0 commit comments