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
- lv1
- Codeup
- SQL
- 깃허브
- java
- CRUD
- 부스트코스
- 파이썬
- @NoArgsConstructor
- 부트캠프
- HTML
- 상속
- 알고리즘
- entity
- HashSet
- git
- DTO
- 캡슐화
- @builder
- Python
- html tag
- 프로그래머스
- 코드업
- stringbuffer
- 에러
- 기본생성자
- @AllArgsConstructor
- 브랜치
Archives
- Today
- Total
잉?
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 = ' ')
'알고리즘_Algorism > Codeup' 카테고리의 다른 글
Codeup 1258 : 1 부터 n 까지 합 구하기 (0) | 2019.07.14 |
---|---|
Codeup 1257 : 두 수 사이의 홀수 출력하기 (0) | 2019.07.14 |
Codeup 1256 : 별 출력하기 (0) | 2019.07.14 |
Codeup 1253 : a 부터 b 까지 출력하기 (0) | 2019.07.14 |
Codeup 1252 : 1 부터 n 까지 출력하기 (0) | 2019.07.14 |
Comments