728x90
https://happybplus.tistory.com/131
728x90
내 생각
너무 당연하게 '*' 다음에도 공백이 올 줄 알았는데...
'*' 뒤에는 공백이 오지 않는다.
n = int(input())
for i in range(1, n+1):
print(' '*(n-i), '*'*(i-1), '*', '*'*(i-1), sep='')
for i in range(n-1, 0, -1):
print(' '*(n-i), '*'*(i-1), '*', '*'*(i-1), sep='')
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 1000] A + B (python) (0) | 2021.05.10 |
---|---|
[백준, BOJ 2443] 별 찍기 - 6 (python) (0) | 2021.05.10 |
[백준, BOJ 10870] 피보나치 수 5 (python) (0) | 2021.05.10 |
[백준, BOJ 9020] 골드바흐의 추측 (python) (0) | 2021.05.10 |
[백준, BOJ 2747] 피보나치 수 (python) (0) | 2021.05.10 |