|
|
|
|
|
by sltkr
5115 days ago
|
|
Even 63-bit integers aren't (all) representable in IEEE double floating point values (that Python uses) which have a 53 bits mantissa. For example, int(float(10¹⁸ - 1)) != 10¹⁸ - 1, but xrange(1, 10¹⁸) is perfectly valid (even in Python 2). edit: how do I type two consecutive asterisks on Hacker News? Backslash doesn't seem to work as an escape character. |
|