[097] 바이트 객체를 문자열로 바꾸기(decode)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

b_txt = b'A lot of things occur each day'
u_txt = b_txt.decode()
print(u_txt)

Comments