TDT4109/Exercise 4 - Inspera/5.py

4 lines
36 B
Python

x = 3
while x:
print('#'*x)
x-=1