728x90
반응형
https://www.acmicpc.net/problem/10996
더보기
내 코드
def Star21(n):
for i in range(2*n):
for j in range(n):
if i % 2 == 0:
if j % 2 == 0:
print('*', end='')
else:
print(' ', end='')
else:
if j % 2 == 0:
print(' ', end='')
else:
print('*', end='')
print()
if __name__=='__main__':
Star21(int(input()))
|
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[python/14889]스타트와 링크 (0) | 2020.03.31 |
---|---|
[python/14888]연산자 끼워넣기 (0) | 2020.03.28 |
[python/2446]별 찍기 - 9 (0) | 2020.03.21 |
[python/2523]별 찍기 - 13 (0) | 2020.03.20 |
[python/10039]평균 점수 (0) | 2020.03.19 |