Skip to content

Commit cd29fa5

Browse files
Merge pull request seeditsolution#259 from BUNNY2210/master
Create printing pattern
2 parents 1269855 + 8ddc005 commit cd29fa5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

printing pattern

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)