python str與bytes之間的轉換
python str與bytes之間的轉換
# bytes object
b = b"example"
# str object
s = "example"
# str to bytes
sb = bytes(s, encoding = "utf8")
# bytes to str
bs = str(b, encoding = "utf8")
# an alternative method
# str to bytes
sb2 = str.encode(s)
# bytes to str
bs2 = bytes.decode(b)
相關文章
- python str與byte轉換 encode decodePython
- 【python】str與json型別轉換PythonJSON型別
- Effective Python(3)- 瞭解 bytes 與 str 的區別Python
- Python報錯:TypeError: a bytes-like object is required, not ‘str‘PythonErrorObjectUI
- TypeError: can‘t concat str to bytesError
- mysql時間與字串之間相互轉換MySql字串
- Java中Array與ArrayList之間的轉換Java
- 【Go】IP地址轉換:數字與字串之間高效轉換Go字串
- android中String與InputStream之間的相互轉換方式Android
- Apple開發_NSImage與CIImage之間的相互轉換APP
- C# bytes[]和sting互相轉換C#
- Json,String,Map之間的轉換JSON
- 角度和弧度之間的轉換
- Java之時間轉換Java
- 第42篇 字元與進位制之間的轉換字元
- Python 實現Excel和TXT文字格式之間的相互轉換PythonExcel
- python中的時間轉換,秒級時間戳轉string,string轉時間Python時間戳
- String和Date、Timestamp之間的轉換
- python3 將bytes轉為字串Python字串
- binaascii:A Python 在二進位制和 ASCII 之間轉換ASCIIPython
- SpringMVC的亂碼與時間轉換SpringMVC
- 時間戳與yyyy-mm-dd hh:mm:ss格式之間的互相轉換時間戳
- Python之str內部功能的介紹Python
- Python3 dict和str互轉Python
- python字串轉換為日期時間Python字串
- Java 中 CLOB 和字串之間的轉換Java字串
- delphi:string,PChar,Array of Char 之間的轉換
- Map和String型別之間的轉換型別
- python時間戳和時間字串的各種轉換Python時間戳字串
- 尤拉角和旋轉矩陣之間的轉換矩陣
- z變換與s變換之間的轉換(一些零碎且不嚴謹的想法)
- ChannelHandler之間處理資料格式轉換與Netty自帶的ChannelhandlerNetty
- 時間戳與時間字串的多時區轉換時間戳字串
- Python秒轉換成時間(時分秒)Python
- 漢字-字母-位元組-位之間的轉換
- java基本型別和物件之間的轉換Java型別物件
- Javascript與Python之間的程序間通訊JavaScriptPython
- js時間戳與日期格式的相互轉換JS時間戳