문자->아스키코드 변환
x = input() print(ord(x)) #A 입력 시 65 출력
아스키코드->문자 변환
x = input() print(chr(x)) #65 입력 시 A 출력