hex関数


hex関数は、与えられた引数(整数)を16進数文字列に変換します。

 

>>> hex(255)
'0xff'
>>> hex(65536)
'0x10000'
>>> hex(48.5) 
<==実数は不可
Traceback (innermost last):
File "<interactive input>", line 1, in ?
TypeError: hex() argument can't be converted to hex
>>> hex(100000L)
'0x186A0L'
>>> 

 

 

 

 

ホーム