>>> sys.getsizeof(int)
436 #? does this mean int occupies 436 bytes .

>>> sys.getsizeof(1)
12 #12 bytes for int object, is this the memory requirement.

I thought int in python is represented by 4 bytes, why is it reporting 12 bytes

Please someone explain why is it reporting 12 bytes when int uses just 4 bytes

link|improve this question

0% accept rate
possible duplicate of How do I profile memory usage in Python? – Björn Pollex Oct 15 '11 at 16:58
Also, this one. Basically, the tool linked there (Heapy) is part of a thesis on memory profiling in Python. If you really want to know, check that out. – Björn Pollex Oct 15 '11 at 17:00
feedback

2 Answers

Yes, an int instance takes up 12 bytes on your system. Integers (like any object) have attributes, i.e. pointers to other objects, which take up additional memory space beyond that used by the object's own value. So 4 bytes for the integer's value, 4 bytes for a pointer to __class__ (otherwise, Python wouldn't know what type the object belonged to and how to start resolving attribute names that are inherited from the int class and its parents), and another 4 for the object's reference count, which is used by the garbage collector.

The type int occupies 436 bytes on your system, which will be pointers to the various methods and other attributes of the int class and whatever other housekeeping information Python requires for the class. The int class is written in C in the standard Python implementation; you could go look at the source code and see what's in there.

link|improve this answer
1  
what a relief .... thanks for explaining . – George Oct 15 '11 at 17:09
Python does not store (sufficiently small) integers by using a special bit in the object pointer as some other languages (ruby, some lisps) do, so they use up rather a lot of memory for plain ints. If 12 bytes is too much for you, and you want to store large arrays of ints, look into numpy's special arrays. – Jürgen Strobel Oct 15 '11 at 19:24
@Jürgen Strobel: Or if it's just a memory concern, use the standard library's array.array, which, I think, also doesn't over-allocate like a list does. – eryksun Oct 15 '11 at 20:08
@eryksun: Either think about how dreadful the average performance of array.append would be if it didn't over-allocate, or read the source (arraymodule.c). – John Machin Oct 15 '11 at 21:56
@kindall: Your answer is specific to Python 2.x. Consider extending it to cover 3.x. – John Machin Oct 15 '11 at 22:05
show 8 more comments
feedback

From the documentation for sys.getsizeof:

getsizeof() calls the object’s __sizeof__ method and adds an additional garbage collector overhead if the object is managed by the garbage collector.

That might be why sys.getsizeof(1) is giving you 12 bytes. As for your first line, keep in mind what the int object is:

>>> int
<type 'int'>

int is the integer type itself, and not an integer. An integer in python actually takes up as many bytes as it needs (which is why you don't need to worry about overflow), while the type is where all that functionality is handled. I believe this distinction is only valid for built-in types, and for user-defined objects the type itself is probably of a similar size as an instance of that type.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.