Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In C, we can find the size of an int, char, etc. I want to know how to get size of objects like a string, integer, etc. in Python.

Related question: How many bytes per element are there in a Python list (tuple)?

I am using an XML file which contains size fields that specify the size of value. I must parse this XML and do my coding. When I want to change the value of a particular field, I will check the size field of that value. Here I want to compare whether the new value that I'm gong to enter is of the same size as in XML. I need to check the size of new value. In case of a string I can say its the length. But in case of int, float, etc. I am confused.

share|improve this question
Why do you need to know the size of something? This is python, we have GC - no need to alloc! – Matthew Schinckel Jan 16 '09 at 6:52
33  
You might want to make sure nothing insane is happening, like a 10 megabyte variable, etc. – Kurt Jan 16 '09 at 8:32
27  
There is value in such information when optimising memory usage for the same reason profiler stats are valuable for optimising speed - knowing where to focus your effort. There's no point optimising your 50 Bar class instances for low memory when a list of 100000 Foos takes up the bulk of memory. – Brian Jan 16 '09 at 13:05
13  
@S.Lott it does in a scientific programming context, if you're trying to figure out if a particular problem will fit in memory. – saffsd May 17 '09 at 1:28
9  
@S. Lott Knowing the size of variables become's invaluable for sanity checking an event driven environment, like say a Twisted based application where there are numerous queue's and delegating constructs – David Jan 22 '10 at 2:26
show 7 more comments

7 Answers

Not sure why you need it, knowing size is almost useless. But why not - Just use the sys.getsizeof function defined in the sys module.

sys.getsizeof(object[, default]):

Return the size of an object in bytes. The object can be any type of object. All built-in objects will return correct results, but this does not have to hold true for third-party extensions as it is implementation specific.

The default argument allows to define a value which will be returned if the object type does not provide means to retrieve the size and would cause a TypeError.

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

Usage example, in python 3.0:

>>> import sys
>>> x = 2
>>> sys.getsizeof(x)
14
>>> sys.getsizeof(sys.getsizeof)
32
>>> sys.getsizeof('this')
38
>>> sys.getsizeof('this also')
48

If you are in python < 2.6 and don't have sys.getsizeof you can use this extensive module instead. Never used it though.

share|improve this answer
how to do in Python 2.5.2 ? – user46646 Jan 17 '09 at 6:20
@rejinacm: I've added info on how to do it on <2.6 – nosklo Oct 29 '09 at 10:32
As a special case, to find out the largest integer supported by the integer type, use sys.maxint. – Vlad the Impala Mar 31 '10 at 4:19
@Goose Bumper: ... which is completely unrelated to the actual size of the int. – nosklo Dec 14 '10 at 10:38
54  
Thanks, but I disagree that it's "almost useless." – g33kz0r Feb 13 '11 at 9:10
show 2 more comments

For numpy arrays, getsizeof doesn't work - for me it always returns 40 for some reason:

from pylab import *
from sys import getsizeof
A = rand(10)
B = rand(10000)

Then (in ipython):

In [64]: getsizeof(A)
Out[64]: 40

In [65]: getsizeof(B)
Out[65]: 40

Happily, though:

In [66]: A.nbytes
Out[66]: 80

In [67]: B.nbytes
Out[67]: 80000
share|improve this answer
11  
>All built-in objects will return correct results, but this does not have to hold true for third-party extensions as it is implementation specific. docs.python.org/library/sys.html#sys.getsizeof – warwaruk Jun 30 '11 at 11:59
"If you are using a numpy array (docs.scipy.org/doc/numpy/reference/arrays.ndarray.html) then you can use the attribute 'ndarray.nbytes' to evaluate its size in memory." stackoverflow.com/a/15591157/556413 – glarrain Apr 22 at 22:24

This can be more complicated than it looks depending on how you want to count things. For instance, if you have a list of ints, do you want the size of the list containing the references to the ints? (ie. list only, not what is contained in it), or do you want to include the actual data pointed to, in which case you need to deal with duplicate references, and how to prevent double-counting when two objects contain references to the same object.

You may want to take a look at one of the python memory profilers, such as pysizer to see if they meet your needs.

share|improve this answer

First: an answer.

import sys

try: print sys.getsizeof(object)
except AttributeError:
    print "sys.getsizeof exists in Python ≥2.6"

Discussion:
In Python, you cannot ever access "direct" memory addresses. Why, then, would you need or want to know how many such addresses are occupied by a given object?? It's a question that's entirely inappropriate at that level of abstraction. When you're painting your house, you don't ask what frequencies of light are absorbed or reflected by each of the constituent atoms within the paint, you just ask what color it is -- the details of the physical characteristics that create that color are beside the point. Similarly, the number of bytes of memory that a given Python object occupies is beside the point.

So, why are you trying to use Python to write C code? :)

share|improve this answer
2  
Your answer was incorrectly voted up since it was generally useful, but not an actual answer to the question. So I added an answer part first. As it was, it should be a comment to the question. – tzot Jan 16 '09 at 13:07
46  
The discussion part not justified. If you run into memory problems it can be very relevant to know where the memory goes. For example large scale scientific calculations using numpy easily run into this problem. Just because you can't think of a use case does not mean there isn't one! – nikow May 29 '09 at 16:00
If sys.getsizeof(obj) <= 256, then it will be allocated alongside similar-sized objects using Python's small request allocator (see Object/obmalloc.c in the Python source code), thus avoiding memory fragmentation. If the size is > 256, then it'll just use malloc(). This can matter if you have a long-running process and you're going to be creating a lot of these objects. – dlitz Apr 18 at 22:15

Here is a quick script I wrote based on the previous answers to list sizes of all variables

for i in dir():
    try:
        print (i, eval(i).nbytes )
    except:
        print (i, sys.getsizeof(eval(i)) )
share|improve this answer

size can be important if your using a random file for random access so need to seek for the right record. for example in a large database of clients each record might be a name address and phone number or mobile number or both and a comment on the client. How big should i make the record before i cant add any more comments etc is a valid concern. Such that how do i calculate the size of the record i need to accomodate all use cases in the file. How do i make the record size big enough for future client comment cases etc. Its a hard question but one dominated by having to know the size of the record and then adding a size to support variable text files in a random ie fixed size file writeout.

share|improve this answer

Besides int and float, nothing is really fixed in size (And int is now long in Python 3, so so much for that). So you'd have to make a function sizeof function that specially works on the object based on type() or something. Either way, sizeof messes seem unpythonic

share|improve this answer
1  
Even ints aren't fixed since they automatically spill over to long ints when they don't fit. – Cristian Jan 16 '09 at 7:20
-1: this function already exists. – nosklo Jan 16 '09 at 10:45
You are correct Cristian – user46646 Jan 17 '09 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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