Skip to content

Commit b8ae59c

Browse files
Merge pull request #267 from SanskarSh/Sanskar-253
Adding code for Symbol Pattern 3
2 parents 556ebfc + c15a336 commit b8ae59c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Symbol Pattern 3
2+
3+
**Pattern Image:**
4+
5+
![image](../../img/3.PNG)
6+
7+
**Contributor:** [Sanskar Shrivastava](https://github.com/SanskarSh)
8+
9+
:star2: Star it :fork_and_knife:Fork it :handshake: Contribute to it!
10+
11+
Discord server - http://pragmaticprogrammer.in/discord
12+
13+
Happy Coding :purple_heart:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
rows = 5
2+
for i in range(rows):
3+
for j in range(rows - i):
4+
print("* ", end="")
5+
print()

0 commit comments

Comments
 (0)