ord는 문자를 유니코드 숫자값으로 변환해주는것이다.
print(ord('A')) # 결과 65
chr은 숫자를 유니코드 문자값으로 변환해주는것이다.
print(chr(65)) # 결과 A