Skip to content

Commit 6407c0d

Browse files
Fixes openAOD#816 creating symbolicpattern179.py
1 parent a853c11 commit 6407c0d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Symbol Patterns/symbolicpattern179.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
n=5
2+
for i in range(n):
3+
if i == 0 or i == n - 1 or i==n//2:
4+
print("*" * n) # Print full line
5+
else:
6+
print("*"+(n-2)*" "+"*")
7+
8+
# *****
9+
# * *
10+
# *****
11+
# * *
12+
# *****

0 commit comments

Comments
 (0)