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
- 문자열
- Network
- 정렬
- 백준
- Python
- misc
- 수학
- HackCTF
- Web
- xcz.kr
- Digital Forensics
- 써니나타스
- N0Named
- SuNiNaTas
- 구현
- wargame
- writeup
- 인코그니토
- Incognito
- Web Hacking
- Database
- C
- Forensics
- cryptography
- 그리디 알고리즘
- MySQL
- 사칙연산
- CTF
- Text
- php
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10995번 별 찍기 - 20 본문
[Baekjoon/Python3] 10995번 별 찍기 - 20
n = int(input())
for i in range(1, n + 1):
if i % 2:
print('* ' * n)
else:
print(' *' * n)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10998번 A×B (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 10996번 별 찍기 - 21 (0) | 2020.12.07 |
[Baekjoon/Python3] 10991번 별 찍기 - 16 (0) | 2020.12.07 |
[Baekjoon/Python3] 10990번 별 찍기 - 15 (0) | 2020.12.07 |
[Baekjoon/Python3] 10988번 팰린드롬인지 확인하기 (0) | 2020.12.07 |
Comments