How do I convert a signed 64.64-bit fixed point integer to a decimal
number in python?
For example the integer 1844674407370955161600 which is a signed 64.64-bit fixed point represents the decimal number +100.00, my understanding is that a python float
has insufficient bits(only 18) to represent the fractional part, hence my choice of the decimal
type.
Perhaps a more general function for converting Qm.n
to a decimal
can be provided.