Skip to content

Commit 9533f7f

Browse files
authored
Merge pull request openAOD#917 from VipinChaudhary31/main
Symbol Pattern 170 openAOD#807
2 parents e7fadfb + f54517e commit 9533f7f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Symbol Patterns/symbolicpattern170.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
symbol_list=[4,3,5,1,2]
2+
for i in range(5):
3+
print([i+1], end='')
4+
for j in range(symbol_list[i]):
5+
print('#', end=' ')
6+
print(end='\n')

0 commit comments

Comments
 (0)