Skip to content

Commit 0583d47

Browse files
authored
Create pat1.py
1 parent cb3b209 commit 0583d47

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Pattern/pat1.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# *
2+
# **
3+
# ***
4+
# ****
5+
# *****
6+
7+
8+
9+
i = 1
10+
while i <= 5:
11+
print('*' * i)
12+
i = i + 1

0 commit comments

Comments
 (0)