http://codeup.kr/problem.php?id=1254
Codeup 1254 - 알파벳 출력하기
startAlphabet, finalAlphabet = input().split()
startAlphabet = ord(startAlphabet)
finalAlphabet = ord(finalAlphabet)
for i in range(startAlphabet, finalAlphabet + 1):
print(chr(i), end=' ')
'알고리즘 문제 풀기 > Codeup' 카테고리의 다른 글
Codeup 1256 - 별 출력하기 (0) | 2019.01.03 |
---|---|
Codeup 1255 - 두 실수 사이 출력하기 (0) | 2019.01.02 |
Codeup 1253 - a부터 b까지 출력하기 (0) | 2019.01.02 |
Codeup 1252 - 1 부터 n 가지 출력하기 (0) | 2019.01.01 |
Codeup 1251 - 1 부터 100까지 출력하기 (0) | 2019.01.01 |