下面小編就為大家帶來一篇python字串str和位元組陣列相互轉換方法。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
實例如下:
# bytes object b = b"example" # str object s = "example" # str to bytes bytes(s, encoding = "utf8") # bytes to str str(b, encoding = "utf-8") # an alternative method # str to bytes str.encode(s) # bytes to str bytes.decode(b)
以上是python字串str和位元組數組相互轉換方法詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!