Python - bytes를 String으로 변환하는 방법
2022. 6. 15. 14:21ㆍPython
utf-8으로 encoding된 bytes를 String으로 다시 변환해야할 때가 있습니다.
bytes를 string으로 decoding하는 방법을 소개합니다.
- string.decode()를 이용한 방법
- str()을 이용한 방법
string.decode()를 이용한 방법
string.decode(encoding)으로 bytes를 string으로 변환할 수 있습니다. bytes가 encoding될 때 사용된 타입을 인자로 전달하면 됩니다.
# bytes
bytes = b'Hello world, Python'
print(bytes)
print(type(bytes))
# decode bytes to string
result = bytes.decode('utf-8')
print(result)
print(type(result))
output
b'Hello world, Python'
<class 'bytes'>
Hello world, Python
<class 'str'>
str()을 이용한 방법
str(bytes, encoding)으로 bytes를 string으로 변환할 수 있습니다. bytes가 encoding될 때 사용된 타입을 인자로 전달하면 됩니다.
# bytes
bytes = b'Hello world, Python'
print(bytes)
print(type(bytes))
# decode bytes to string
result = str(bytes, 'utf-8')
print(result)
print(type(result))
output
b'Hello world, Python'
<class 'bytes'>
Hello world, Python
<class 'str'>
참고 : https://codechacha.com/ko/python-convert-bytes-to-string/
'Python' 카테고리의 다른 글
python - pandas apply를 사용한 데이터 수정 with lambda (0) | 2024.03.12 |
---|---|
Python - Anaconda를 활용한 가상환경 생성 (0) | 2022.06.15 |
Python - Pandas read_csv 'utf-8' codec can't decode byte 0xb3 in position 19: invalid start byte ERROR 해결 (0) | 2021.10.28 |
Python - Jpype1 버전 변경하기 (2) | 2021.10.24 |
java.nio.file.invalidpathexception: illegal char <*> at index 84 문제 해결 - konlpy, jpype (0) | 2021.10.23 |