-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32902번 Chips (0) | 2024.12.03 |
---|---|
[백준/파이썬] 32775번 가희와 4시간의 벽 1 (0) | 2024.12.01 |
[백준/파이썬] 32801번 Generalized FizzBuzz (1) | 2024.11.29 |
[백준/파이썬] 18154번 Speeding (0) | 2024.11.28 |
[백준/파이썬] 22113번 창영이와 버스 (0) | 2024.11.27 |