Python

(파이썬) 내장함수 ord() chr() 유니코드 문자를 정수로 변환

코딩ABC 2023. 10. 10. 10:34
반응형

파이썬 내장함수(Built-in Function)인 ord(), chr() 함수에 대해 알아 봅니다.

 

ord(c)
c 는 유니코드 한 문자입니다. c로 표현된 유니코드 1 문자를 정수(integer)로 변환합니다.
chr(i)
chr() 함수는 ord 함수의 반대되는 함수라고 할 수 있습니다. 정수에 해당하는 유니코드 문자를 반환합니다.

 

ord(c)
Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord('a') returns the integer 97 and ord('€') (Euro sign) returns 8364. This is the inverse of chr().
chr(i)
Return the string representing a character whose Unicode code point is the integer i. For example, chr(97) returns the string 'a', while chr(8364) returns the string '€'. This is the inverse of ord().

The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). ValueError will be raised if i is outside that range.

 

a=ord('A')
--> 65
chr(65)
--> 'A'를 반환

(파이썬) 내장함수: ord(), chr() 유니코드 문자를 정수로 변환

 

 

반응형