mirror of https://github.com/me50/kukemuna.git
15 lines
304 B
Python
15 lines
304 B
Python
|
|
while True:
|
||
|
|
try:
|
||
|
|
height = int(input("Height: "))
|
||
|
|
if height in range(1, 9):
|
||
|
|
break
|
||
|
|
except:
|
||
|
|
ValueError
|
||
|
|
|
||
|
|
space = height - 1
|
||
|
|
|
||
|
|
for r in range(height):
|
||
|
|
print(" " * space + "#" * (height - space) + " " + "#" * (height - space), end="")
|
||
|
|
print()
|
||
|
|
space -= 1
|