Skip to content

Commit 6128473

Browse files
Create symbolicpattern178.py and Fixes openAOD#815
1 parent a853c11 commit 6128473

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

symbolicpattern178.py

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

0 commit comments

Comments
 (0)