本函数是转换一个整数对象为十六进制的字符串表示,比如像0x的格式。如果对象不是一个整数,应定义一个方法___index__()返回整数。如果想把本函数的结果转换为整数类型,需要int()函数,并且使用基数为16的方式转换。另浮点数转换为十六进制表示需要使用float.hex()来转换,而不能使用本函数。
例子:
#hex() print(hex(20)) print(hex(128)) print(hex(0x55)) print(hex(-127))
输出结果如下:
0x14
0x80
0x55
-0x7f
原文地址:http://blog.csdn.net/caimouse/article/details/42290285