![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FtrOAl%2FbtrfBqJvViL%2FjewfDDzgMsSH7NLJ4Xkk0K%2Fimg.png)
백준 11654번 a = input() print(ord(a)) * 아스키 코드(ASCII) -> 문자(str) 변환 : chr() 함수 ex) chr(65) >> 'A' * 문자 -> 아스키코드 변환: ord() 함수 ex) ord('A') >> 65 아스키 코드 표 백준 10809번 import sys S = list(sys.stdin.readline().rstrip()) def Num(S): L = [] num = [] for i in range(97, 123): # ASCII number L.append(i) num.append(-1) for j, l in enumerate(L): for n, c in enumerate(S): if ord(c) == l: if num[j] != -1: pass e..