python中的binascii
簡單使用binascii
import binascii
a = '中文或其他'.encode() # 轉為bytes.
print(a)
a1 = binascii.b2a_hex(a) # 轉為不帶\x的16進位制資料.
print(a1)
a2 = binascii.a2b_hex(a1) # 將a1轉換為帶\x的16進位制資料.
print(a2)
相關文章
- Python處理十六進位制與二進位制轉換的問題——binascii自帶庫PythonASCII
- python(python中的super函式、)Python函式
- python 中的 flaskPythonFlask
- Python中的字串Python字串
- python 中的序列Python
- Python中的tuplePython
- Python中的dictPython
- python 中的[::-1]Python
- python中的tracebackPython
- Python中的字典Python
- Python基礎之:Python中的IOPython
- Python基礎之:Python中的類Python
- Python中if的基本用法Python
- python中的__str__Python
- Python中的屬性Python
- python中*args的使用Python
- python中的註釋Python
- python中的運算子Python
- python中return的用法Python
- Python中的Unittest框架Python框架
- Python中列表的方法Python
- python中的迭代器Python
- Python class中的otherPython
- python中的eval用法Python
- python中的列表操作Python
- python中的pickle功能Python
- python 中 is, is not ,==, != 的區別Python
- python中的過載Python
- Python中的互斥鎖Python
- python中的風險Python
- Python中的正則Python
- python中for……else……的使用Python
- python 中assert的使用Python
- Python中的多程式Python
- Python中字典的操作Python
- 06 – Python 中的字串Python字串
- python類中的方法Python
- 06 - Python 中的字串Python字串