We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1269855 + 8ddc005 commit cd29fa5Copy full SHA for cd29fa5
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