반응형
SMALL
# Enter your code here. Read input from STDIN. Print output to STDOUT
n,m = map(int, input().split(' '))
a = '.|.'
b = 'WELCOME'
i = 1
while i <= n - 2 :
print((a*i).center(m,'-'))
i += 2
print(b.center(m,'-'))
i = n-2
while i >= 1 :
print((a*i).center(m,'-'))
i -= 2
반응형
LIST
'IT & 영상관련 > 파이썬python' 카테고리의 다른 글
파이썬] 병합 정렬 merge sort (0) | 2020.07.05 |
---|---|
파이썬] 삽입 정렬 Insertion sort (0) | 2020.07.04 |
python]hackerRank] Text Wrap (저장용) (0) | 2020.07.01 |
파이썬] 선택정렬 Selection sort (0) | 2020.06.30 |
파이썬] 순차 탐색sequential search 알고리즘 구현 (0) | 2020.06.30 |