Python str與bytes互相轉換

Python 字串與bytes互相轉換

方法1:

#str to bytes
str.encode(s)
#Bytes to str
bytes.decode(b)

方法2:

#str to bytes
bytes(s, encoding = "utf8")
#Bytes to str
str(b, encoding = "utf-8")

人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。