[Python] 아스키 코드

yuuforest·2023년 6월 28일
0

Python 문법

목록 보기
10/17
post-thumbnail

문자를 정수로, 정수를 문자로

🐑 문자를 정수로


✔️ ord

ord("A")

>> 65

ord('A')

>> 65
ord("&")

>> 38

ord('&')

>> 38

🐑 정수를 문자로


✔️ chr

chr(65)

>> A
chr(38)

>> &
profile
🐥 Backend Developer 🐥

0개의 댓글