2015-02-11 96 views

回答

2

您可以ord一起使用hex

>>> hex(ord("B")) 
'0x42' 
2

可以以ord

ord("B") 

您可以任意數量轉換爲十六進制表示與hex得到任何字符的ASCII值

hex(77) 
相關問題