보안을 그리다, 훈이

[Baekjoon/Python3] 2444번 별 찍기 - 7 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2444번 별 찍기 - 7

HooNeee 2020. 12. 3. 01:27

[Baekjoon/Python3] 2444번 별 찍기 - 7

 

www.acmicpc.net/problem/2444

 

2444번: 별 찍기 - 7

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

www.acmicpc.net

 

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