I want to see the type of a variabe whether it is unsigned 32 bit,signed 16 bit etc. How to view...
|
2
|
|||
|
|
|
You may be looking for the See the examples below, but there's no "unsigned" type in Python just like Java. Positive integer:
Large positive integer:
Negative integer:
Literal sequence of characters:
|
|||
|
|
|
I also highly recommend the IPython interactive interpreter when dealing with questions like this. It lets you type e.g.
|
|||
|
|
|
The question is somewhat ambiguous -- I'm not sure what you mean by "view". If you are trying to query the type of a native Python object, @atzz's answer will steer you in the right direction. However, if you are trying to generate Python objects that have the semantics of primitive C-types, (such as
This is also reflected in the
The maximum integer supported (Python 2's
There is also sys.getsizeof, which returns the actual size of the Python object in residual memory:
For float data and precision data, use sys.float_info:
|
||||||
|
|
|
Do you mean in python or using ctypes? In the first case, you simply cannot - because python does not have signed/unsigned, 16/32 bit integers. In the second case, you can use type():
For more reference on ctypes, an its type, see official documentation. |
||
|
|
|
|
Python doesn't have such types as you describe. There are two types used to represent integral values: |
||||||||||
|
|
|
Python doesn't have the same types as C/C++, which appears to be your question. Try this:
The distinction between int and long goes away in Python 3.0, though. |
||
|
|
|
|
It really depends on what level you mean. In Python 2.x, there are two integer types, |
||
|
|
