I want to differentiate between 32-bit and 64-bit integers in Python. In C it's very easy as we can declare variables using int_64 and int_32. But in Python how do we differentiate between 32-bit integers and 64-bit integers?
|
The An example to make it clear.
documentation for the formatting string. |
|||
|
|
|
There's no need. The interpreter handles allocation behind the scenes, effectively promoting from one type to another as needed without you doing anything explicit. |
|||
|
|
Basically, you don't. There's no reason to. If you want to deal with types of known bit size, look at If you want to put data into a specified format, look at the struct module. |
|||||||||||
|
|
The following snippet from an ipython interpreter session indicates one way of testing the type of an integer. Note, on my system, an
Also see an answer about
|
|||
|
|

intmay be 32-bit or 64-bit, andlongis of arbitrary length. You can determine whether a number will fit in 32 or 64 bits, and you can attempt to pack a number into a binary format of suitable size, but that's a quite different question. – Chris Morgan Dec 29 '12 at 10:17