Skip to content

Commit b0d7b97

Browse files
committed
solved issue openAOD#829
1 parent fc3c75d commit b0d7b97

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Symbol Patterns/symbolpattern192.py

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

0 commit comments

Comments
 (0)