보안을 그리다, 훈이

[Baekjoon/Python3] 2523번 별 찍기 - 13 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2523번 별 찍기 - 13

HooNeee 2020. 12. 3. 01:53

[Baekjoon/Python3] 2523번 별 찍기 - 13

 

www.acmicpc.net/problem/2523

 

2523번: 별 찍기 - 13

첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다.

www.acmicpc.net

 

n = int(input())
for i in range(1, n + 1):
    print('*' * i)
for i in range(n - 1, 0, -1):
    print('*' * i)
Comments