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
- 자바
- github
- 프로그래머스
- 알고리즘
- 브랜치
- HTML
- 파이썬
- 깃허브
- git
- 부트캠프
- 상속
- SQL
- lv1
- html tag
- Codeup
- @NoArgsConstructor
- HashSet
- DTO
- 부스트코스
- Python
- 캡슐화
- 코드업
- stringbuffer
- entity
- CRUD
- @AllArgsConstructor
- 에러
- @builder
- 기본생성자
- java
Archives
- Today
- Total
목록파이썬 (29)
잉?
Codeup 1257 : 두 수 사이의 홀수 출력하기
https://codeup.kr/problem.php?id=1257 1257 : 두 수 사이의 홀수 출력하기 a, b = map(int, input().split()) for i in range(a, b+1): if i % 2 == 1: print(i, end = ' ')
알고리즘_Algorism/Codeup
2019. 7. 14. 21:58
Codeup 1256 : 별 출력하기
https://codeup.kr/problem.php?id=1256 1256 : 별 출력하기 n = int(input()) for i in range(0, n): print('*', end = '')
알고리즘_Algorism/Codeup
2019. 7. 14. 21:52
Codeup 1254 : 알파벳 출력하기
https://codeup.kr/problem.php?id=1254 1254 : 알파벳 출력하기 start, end = input().split() start = ord(start) end = ord(end) for i in range(start, end+1): print(chr(i), end = ' ') https://wikidocs.net/32#ord
알고리즘_Algorism/Codeup
2019. 7. 14. 21:48
Codeup 1253 : a 부터 b 까지 출력하기
https://codeup.kr/problem.php?id=1253 1253 : a 부터 b 까지 출력하기 a, b = map(int, input().split()) if (a < b): for i in range(a, b+1): print(i, end=' ') else: for i in range(b, a+1): print(i, end=' ')
알고리즘_Algorism/Codeup
2019. 7. 14. 02:09