TDT4109/Exercise 4 - Inspera/5.py

4 lines
36 B
Python
Raw Normal View History

2020-10-01 12:05:45 +02:00
x = 3
while x:
print('#'*x)
x-=1