python python byte to string 작성일 2019-06-07 | 0 comments byte 문자열을 string으로 바꾸는 방법 파이썬 Bytes 타입을 str 타입으로 바꾸는 방법 12345678>>> text = b'hello' >>> type(text) <class 'bytes'> >>> text.decode('utf-8') 'hello' >>> text = text.decode('utf-8') >>> type(text) >>> <class 'str'>