minstory

Python 아스키 코드 변환 본문

Python

Python 아스키 코드 변환

mjuu 2020. 1. 4. 18:38
print ord("Z")       # 출력 결과: 90
print hex(ord("Z"))  # 출력 결과: 0x5a

print chr(90)        # 출력 결과: Z
print chr(0x5A)      # 출력 결과: Z

 

<아스키코드 표>

Comments