minstory
Python 아스키 코드 변환 본문
print ord("Z") # 출력 결과: 90
print hex(ord("Z")) # 출력 결과: 0x5a
print chr(90) # 출력 결과: Z
print chr(0x5A) # 출력 결과: Z
<아스키코드 표>
'Python' 카테고리의 다른 글
SSL Error ("Can't connect to HTTPS URL because the SSL module is not available.) (0) | 2021.06.22 |
---|
Comments