본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 6929번 Dressing Up

by 현장 2024. 11. 30.

-Code

n = int(input())
res = []
for i in range(1, n, 2):
    res.append("*" * i + " " * ((n - i) * 2) + "*" * i)

for el in res:
    print(el)
print("*" * n * 2)
for el in res[::-1]:
    print(el)