We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7fadfb + f54517e commit 9533f7fCopy full SHA for 9533f7f
Symbol Patterns/symbolicpattern170.py
@@ -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