Python - bytes를 String으로 변환하는 방법

utf-8으로 encoding된 bytes를 String으로 다시 변환해야할 때가 있습니다.

bytes를 string으로 decoding하는 방법을 소개합니다.

String을 byte로 변환하는 방법은 "Python - String을 bytes로 변환하는 방법"을 참고해주세요.

1. 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'>

2. 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'>

3. 참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha