인코딩함수
CODEDRAGON ㆍDevelopment/Python
반응형
ord()
각각의 문자에 대한 아스키(ASCII) 코드 값을 확인할 수 있습니다
encode()
문자열을 byte 배열로 인코딩합니다.
str.encode(encoding="utf-8", errors="strict") |
https://docs.python.org/3/library/stdtypes.html#str.encode
decode()
byte 배열을 받아서 문자열로 디코딩합니다.
bytes.decode(encoding="utf-8", errors="strict") |
https://docs.python.org/3/library/stdtypes.html#bytes.decode
'Development > Python' 카테고리의 다른 글
Response 객체 (0) | 2020.02.25 |
---|---|
urlib 패키지 (0) | 2020.02.25 |
HTML 파일 (0) | 2020.02.25 |
: IdNamed Placeholder (0) | 2020.02.25 |
PyMySql Module 설치 (0) | 2020.02.25 |