vote up 2 vote down star
2

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.

flag

27% accept rate
Why do you need to know the size of something? This is python, we have GC - no need to alloc! – Matthew Schinckel Jan 16 at 6:52
You might want to make sure nothing insane is happening, like a 10 megabyte variable, etc. – Kurt Jan 16 at 8:32
This information has no possible value. Better to ask how high is the sky. – S.Lott Jan 16 at 11:58
1  
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 at 13:05
1  
@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 at 1:28
show 5 more comments

5 Answers

vote up -3 vote down

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

link|flag
Even ints aren't fixed since they automatically spill over to long ints when they don't fit. – Cristian Jan 16 at 7:20
-1: this function already exists. – nosklo Jan 16 at 10:45
You are correct Cristian – rejinacm Jan 17 at 10:24
vote up 3 vote down

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? :)

link|flag
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. – ΤΖΩΤΖΙΟΥ Jan 16 at 13:07
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 at 16:00
vote up 10 vote down

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.

link|flag
how to do in Python 2.5.2 ? – rejinacm Jan 17 at 6:20
@rejinacm: I've added info on how to do it on <2.6 – nosklo Oct 29 at 10:32
vote up 1 vote down

It might be useful to see why your process eats up memory...

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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