보안을 그리다, 훈이

[Baekjoon/Python3] 2556번 별 찍기 - 14 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2556번 별 찍기 - 14

HooNeee 2020. 12. 3. 02:00

[Baekjoon/Python3] 2556번 별 찍기 - 14

 

www.acmicpc.net/problem/2556

 

2556번: 별 찍기 - 14

지금까지 안 나온 별 찍기가 뭐가 있는지 생각해본 후, 별을 적절히 찍으세요.

www.acmicpc.net

 

n = int(input())
for i in range(n):
    print('*' * n)

 

n = int(input())
for i in range(n):
    for i in range(n):
        print('*', end='')
    print()
Comments