Skip to content

Commit 2fc448b

Browse files
authored
Merge pull request openAOD#885 from anshyyy/patch-1
symbolpattern194.py
2 parents 0a56a3e + b26cdd4 commit 2fc448b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Symbol Patterns/symbolpattern194.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
height = 5
2+
count= 0
3+
for i in range(0, height):
4+
print("*", end="")
5+
for j in range(0, height+1):
6+
if (j == height):
7+
print("*", end="")
8+
elif (j == count):
9+
print("*", end="")
10+
else:
11+
print(end=" ")
12+
count = count + 1
13+
print()

0 commit comments

Comments
 (0)