Python 3.1 快速導覽 - 字節型態的 fromhex()

字節 (bytes) 型態 (type) 的 fromhex() 方法 (method) ,將具有十六進位數字的字串 string 轉換為字節型態

方法描述
classmethod bytes.fromhex(string)將具有十六進位數字的字串 string 轉換為字節型態


舉例示範如下
a = "f0 f1 f2 f3 f4"
print(a)
print(bytes.fromhex(a))
print()

b = "01 2345"
print(b)
print(bytes.fromhex(b))
print()

c = "12 13 14 15 16"
print(c)
print(bytes.fromhex(c))
print()

d = "1213141516"
print(d)
print(bytes.fromhex(c))
print()

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:bytesfromhex.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
字節bytes
型態type
方法method


內建型態




沒有留言: