python bytes與字符串的相互轉化

原文地址:http://www.cnblogs.com/xiandedanteng/p/9009964.htmlhtml # bytes轉字符串方式一 b=b'\xe9\x80\x86\xe7\x81\xab' string=str(b,'utf-8') print(string) # bytes轉字符串方式二 b=b'\xe9\x80\x86\xe7\x81\xab' string=b.dec
相關文章
相關標籤/搜索