Search Results

-3
votes

How do I determine the size of an object in Python?

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 ba …