Does anybody know how Python manage internally int and long types?
- Does it choose the right type dynamically?
- What is the limit for an int?
- I am using Python 2.6, Is is different with previous versions?
How should I understand the code below?
>>> print type(65535)
<type 'int'>
>>> print type(65536*65536)
<type 'long'>
Update:
>>> print type(0x7fffffff)
<type 'int'>
>>> print type(0x80000000)
<type 'long'>
reallocit all right. But I'm not quite sure, so I'll leave the answer to someone else. – zneak Jan 20 '10 at 21:00var = 666L– qba Jan 20 '10 at 21:04intis a Clong(default is signed) ... see<CPython 2.X source>/Include/intobject.h: typedef struct { PyObject_HEAD long ob_ival; } PyIntObject; In any case Python 2.xintallows negative numbers; a Cunsignedjust wouldn't cope. – John Machin Jan 20 '10 at 22:47