보안을 그리다, 훈이

[Baekjoon/Python3] 10995번 별 찍기 - 20 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10995번 별 찍기 - 20

HooNeee 2020. 12. 7. 00:08

[Baekjoon/Python3] 10995번 별 찍기 - 20

 

www.acmicpc.net/problem/10995

 

10995번: 별 찍기 - 20

예제를 보고 규칙을 유추한 뒤에 별을 찍어 보세요.

www.acmicpc.net

 

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