python'long'十六进制值到十进制

时间:2012-06-03 14:29:54

标签: python

嗨我想在没有循环的情况下将十六进制值转换为十进制(因为'速度'问题)

ex)
>>> myvalue = "\xff\x80\x17\x90\x12\x44\x55\x99\x90\x12\x80"
>>> int(myvalue)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '\xff\x80\x17\x90\x12DU\x99\x90\x12\x80'

>>> ord(myvalue)
Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
TypeError: ord() expected a character, but string of length 11 found
>>>

有人帮忙吗?

2 个答案:

答案 0 :(得分:4)

您的号码似乎是二进制数据给出的整数。在Python 3.2中,您可以使用int.from_bytes()将其转换为Python整数:

>>> myvalue = b"\xff\x80\x17\x90\x12\x44\x55\x99\x90\x12\x80"
>>> int.from_bytes(myvalue, "big")
308880981568086674938794624

我可以为Python 2.x提出的最佳解决方案是

>>> myvalue = "\xff\x80\x17\x90\x12\x44\x55\x99\x90\x12\x80"
>>> int(myvalue.encode("hex"), 16)
308880981568086674938794624L

由于这不涉及Python循环,但它应该非常快。

答案 1 :(得分:0)

struct模块很可能不会使用循环:

import struct
valuesTuple = struct.unpack ('L', myValue[:4])

当然,这会将数值限制为基本数据类型(int,long int等)