[Python] 아스키코드 변환

hyelimchoi1223·2021년 2월 21일
0

[Study] Python

목록 보기
12/16
post-thumbnail

문자에서 숫자 코드로 변환

print(ord('A'))
print(ord('a'))
print(ord('B'))
print(ord('b'))

✅ 결과

65
97
66
98

숫자에서 문자 코드로 변환

print(chr(65))
print(chr(97))
print(chr(66))
print(chr(98))

✅ 결과

A
a
B
b

한글에서 숫자 코드로 변환

print(ord('가'))
print(ord('나'))
print(ord('다'))
print(ord('라'))

✅ 결과

44032
45208
45796
46972

0개의 댓글