티스토리 뷰
import sys
lineNum = int(sys.stdin.readline())
for i in range(lineNum):
blanks = lineNum-i-1
stars = i + 1
for j in range(blanks):
print(" ", end="")
for m in range(stars):
print("* ", end="")
print("")
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 2751번 - 수 정렬하기 2 (0) | 2020.12.31 |
---|---|
[Python] 백준 10992번 - 별찍기 17 (0) | 2020.12.30 |
[Python] 백준 2446번 - 별찍기 9 (0) | 2020.12.30 |
[Python] 백준 2522번 - 별찍기 12 (0) | 2020.12.30 |
[Python] 백준 2445번 - 별찍기 8 (0) | 2020.12.30 |