Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 취약점점검
- vscode
- 장고vscode
- web
- 해킹
- jango
- 코로나바이러스19
- 코로나
- 해커
- djangovscode
- 장고
- Django
- 파이썬웹
- AndroidOS
- 코로나바이러스
- csaw 2018
- rev-basic-3
- 웹해킹
- 리버싱
- 정보보호영재원
- 바이러스
- 1546
- 모세포
- 해킹문제
- covid19
- csaw
- webhacking.kr문제풀이
- 파이썬
- 백준
- dreamhack
Archives
- Today
- Total
Kilkat
백준 2523번 python 본문
a = int(input())
cnt = 1
cnt_2 = 1
for i in range(0, a):
print('*' * cnt)
cnt += 1
for i in range(0 , a - 1):
print('*' * (a - cnt_2))
cnt_2 += 1
'Programming > python' 카테고리의 다른 글
백준 2577번 python (0) | 2021.03.17 |
---|---|
백준 2446번 python (0) | 2021.03.17 |
백준 2444번 python (0) | 2021.03.17 |
백준 2440번 python (0) | 2021.03.17 |
백준 2438번 python (0) | 2021.03.17 |
Comments