반응형
파이썬 내장함수(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'를 반환 |
반응형
'Python' 카테고리의 다른 글
(파이썬) 내장함수 bin() oct() hex() (0) | 2023.10.13 |
---|---|
(파이썬) 내장함수 id() (0) | 2023.10.13 |
(파이썬) 터틀 그래픽 함수, 간단하게 요약 (0) | 2023.10.04 |
(파이썬) 입력 받은 값의 합과 평균 구하기 (0) | 2023.10.02 |
(파이썬) 반복문으로 별찍기, 삼각형 역삼각형 정삼각형 직각삼각형 (0) | 2023.10.01 |