소스 코드
# 변수 선언
inputNum = int(input())
# 별 출력
for i in range(inputNum):
print(' '*i, '*'*((inputNum-i)*2-1))
for i in range(inputNum-2, -1, -1):
print(' '*i, '*'*((inputNum-i)*2-1))
출력 결과
'5. 알고리즘 > 5_3 백준' 카테고리의 다른 글
[백준알고리즘] 4673번 셀프 넘버 파이썬(Python) (0) | 2020.09.14 |
---|---|
[백준알고리즘] 10996번 별 찍기 - 21 파이썬(Python) (0) | 2020.09.01 |
[백준알고리즘] 2523번 별 찍기 -13 파이썬(Python) (0) | 2020.08.30 |
[백준알고리즘] 5543번 상근날드 파이썬(Python) (0) | 2020.08.29 |
[백준알고리즘] 10039번 평균 점수 파이썬(Python) (0) | 2020.08.28 |