I want to convert a float (the output of time.time()) in hex using python 2.4/2.5.
I found tons of examples that convert hex to float, but I cannot find anything that allows me to do what the float.hex() of python >= 2.6 does.
|
I want to convert a float (the output of I found tons of examples that convert hex to float, but I cannot find anything that allows me to do what the |
||||
|
It can't be done portably in Python before version 2.6; it needs the information in sys.float_info, which is new in Python 2.6. If you want to do it non-portably, i.e. for your particular platform, you would need to look at the This seems like a lot of work, for what? What is your goal? What do you want to do that can't be achieved with Edit: need for a unique identifier Note that time.time() is not very precise: """ time.time() Return the time as a floating point number expressed in seconds since the epoch, in UTC. Note that even though the time is always returned as a floating point number, not all systems provide time with a better precision than 1 second. While this function normally returns non-decreasing values, it can return a lower value than a previous call if the system clock has been set back between the two calls. """ Allowing for up to a billionth of a second resolution:
Is that good enough? |
||||
|
|
|
have a look at this How do I convert a Python float to a hexadecimal string in python 2.5? Nonworking solution attached. |
|||||||
|
|
Here is the C version of the code, I don't have time to port it right now, but maybe someone else can.
|
|||
|
|
|
Of course it can be done in a portable way, it's just maths. Here's how (inclusing tests proving it works).
Yeah, that's pretty pointless. :-) Of course, the correct answer in this case is to not convert a float to hex, but to use an INTEGER representation of time and convert that to a hex string. But still, it can be done. :) |
|||
|
|
hash(x) == hash(y) and x != yto evaluate toTrue... he wants it to be UNIQUE – John Machin Dec 13 '10 at 19:59