浅谈Python 对象内存占用


Posted in Python onJuly 15, 2016

一切皆是对象

在 Python 一切皆是对象,包括所有类型的常量与变量,整型,布尔型,甚至函数。 参见stackoverflow上的一个问题 Is everything an object in python like ruby

代码中即可以验证:

# everythin in python is object def fuction(): return print isinstance(True, object) print isinstance(0, object) print isinstance('a', object) print isinstance(fuction, object)

如何计算

Python 在 sys 模块中提供函数 getsizeof 来计算 Python 对象的大小。

sys.getsizeof(object[, default])

以字节(byte)为单位返回对象大小。 这个对象可以是任何类型的对象。 所以内置对象都能返回正确的结果 但不保证对第三方扩展有效,因为和具体实现相关。

......

getsizeof() 调用对象的 __sizeof__ 方法, 如果对象由垃圾收集器管理, 则会加上额外的垃圾收集器开销。

当然,对象内存占用与 Python 版本以及操作系统版本关系密切, 本文的代码和测试结果都是基于 windows7 32位操作系统。

import sys print sys.version

2.7.2 (default, Jun 24 2011, 12:21:10) [MSC v.1500 32 bit (Intel)]

基本类型

•布尔型

print 'size of True: %d' % (sys.getsizeof(True)) print 'size of False: %d' % (sys.getsizeof(False))

输出:

size of True: 12 size of False: 12

•整型

# normal integer print 'size of integer: %d' % (sys.getsizeof(1)) # long print 'size of long integer: %d' % (sys.getsizeof(1L)) print 'size of big long integer: %d' % (sys.getsizeof(100000L)) 输出:

size of integer: 12x size of long integer 1L: 14 size of long integer 100000L: 16

可以看出整型占用12字节,长整型最少占用14字节,且占用空间会随着位数的增多而变大。 在2.x版本,如果整型类型的值超出sys.maxint,则自动会扩展为长整型。而 Python 3.0 之后,整型和长整型统一为一种类型。

•浮点型

print 'size of float: %d' % (sys.getsizeof(1.0))

输出:

size of float: 16

浮点型占用16个字节。超过一定精度后会四舍五入。

参考如下代码:

print 1.00000000003 print 1.000000000005

输出:

1.00000000003 1.00000000001

•字符串

# size of string type print '\r\n'.join(["size of string with %d chars: %d" % (len(elem), sys.getsizeof(elem)) for elem in ["", "a", "ab"]]) # size of unicode string print '\r\n'.join(["size of unicode string with %d chars: %d" % (len(elem), sys.getsizeof(elem)) for elem in [u"", u"a", u"ab"]])

输出:

size of string with 0 chars: 21 size of string with 1 chars: 22 size of string with 2 chars: 23 size of unicode string with 0 chars: 26 size of unicode string with 1 chars: 28 size of unicode string with 2 chars: 30

普通空字符串占21个字节,每增加一个字符,多占用1个字节。Unicode字符串最少占用26个字节,每增加一个字符,多占用2个字节。

集合类型

•列表

# size of list type print '\r\n'.join(["size of list with %d elements: %d" % (len(elem), sys.getsizeof(elem)) for elem in [[], [0], [0,2], [0,1,2]]])

输出:

size of list with 0 elements: 36 size of list with 1 elements: 40 size of list with 2 elements: 44 size of list with 3 elements: 48

可见列表最少占用36个字节,每增加一个元素,增加4个字节。但要注意,sys.getsizeof 函数并不计算容器类型的元素大小。比如:

print 'size of list with 3 integers %d' % (sys.getsizeof([0,1,2])) print 'size of list with 3 strings %d' % (sys.getsizeof(['0','1','2']))

输出:

size of list with 3 integers 48 size of list with 3 strings 48

容器中保存的应该是对元素的引用。如果要准确计算容器,可以参考recursive sizeof recipe 。使用其给出的 total_size 函数:

print 'total size of list with 3 integers %d' % (total_size([0,1,2])) print 'total size of list with 3 strings %d' % (total_size(['0','1','2']))

输出为:

total size of list with 3 integers 84 total size of list with 3 strings 114

可以看出列表的空间占用为 基本空间 36 + (对象引用 4 + 对象大小) * 元素个数。

另外还需注意如果声明一个列表变量,则其会预先分配一些空间,以便添加元素时增加效率:

li = [] for i in range(0, 101): print 'list with %d integers size: %d, total_size: %d' % (i, getsizeof(li), total_size(li)) li.append(i)

•元组

基本与列表类似,但其最少占用为28个字节。

•字典

字典的情况相对复杂很多,具体当然要参考代码 dictobject.c, 另外 NOTES ON OPTIMIZING DICTIONARIES 非常值得仔细阅读。

基本情况可以参考[stackoverflow] 的问题 Python's underlying hash data structure for dictionaries 中的一些回答:

•字典最小拥有8个条目的空间(PyDict_MINSIZE);
•条目数小于50,000时,每次增长4倍;
•条目数大于50,000时,每次增长2倍;
•键的hash值缓存在字典中,字典调整大小后不会重新计算;

每接近2/3时,字典会调整大小。

以上这篇浅谈Python 对象内存占用就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python备份Mysql脚本
Aug 11 Python
python 写的一个爬虫程序源码
Feb 28 Python
浅谈pyhton学习中出现的各种问题(新手必看)
May 17 Python
Python中字典和集合学习小结
Jul 07 Python
TF-IDF算法解析与Python实现方法详解
Nov 16 Python
python opencv之SIFT算法示例
Feb 24 Python
Python 批量合并多个txt文件的实例讲解
May 08 Python
python算法与数据结构之单链表的实现代码
Jun 27 Python
基于Django ORM、一对一、一对多、多对多的全面讲解
Jul 26 Python
python安装后的目录在哪里
Jun 21 Python
基于Python的一个自动录入表格的小程序
Aug 05 Python
Python破解极验滑动验证码详细步骤
May 21 Python
python发送邮件功能实现代码
Jul 15 #Python
Python中列表和元组的使用方法和区别详解
Dec 30 #Python
Python中的变量和作用域详解
Jul 13 #Python
在Python中通过threading模块定义和调用线程的方法
Jul 12 #Python
举例讲解Python编程中对线程锁的使用
Jul 12 #Python
使用Python编写一个最基础的代码解释器的要点解析
Jul 12 #Python
Python中使用bidict模块双向字典结构的奇技淫巧
Jul 12 #Python
You might like
php生成文件
2007/01/15 PHP
php str_pad 函数使用详解
2009/01/13 PHP
Thinkphp的volist标签嵌套循环使用教程
2014/07/08 PHP
PHP扩展框架之Yaf框架的安装与使用
2016/05/18 PHP
php设计模式之组合模式实例详解【星际争霸游戏案例】
2020/03/27 PHP
javascript 密码强度验证规则、打分、验证(给出前端代码,后端代码可根据强度规则翻译)
2010/05/18 Javascript
jQuery 中$(this).index与$.each的使用指南
2014/11/20 Javascript
jQuery实现点击按钮文字变成input框点击保存变成文字
2016/05/09 Javascript
动态加载js、css的简单实现代码
2016/05/26 Javascript
详解JavaScript对象的深浅复制
2017/03/30 Javascript
JS将unicode码转中文方法
2017/05/08 Javascript
react系列从零开始_简单谈谈react
2017/07/06 Javascript
JavaScript登录验证基础教程
2017/11/01 Javascript
VS Code转换大小写、修改选中文字或代码颜色的方法
2017/12/15 Javascript
vue引入axios同源跨域问题
2018/09/27 Javascript
vue中使用微信公众号js-sdk踩坑记录
2019/03/29 Javascript
JavaScript 获取滚动条位置并将页面滑动到锚点
2021/02/08 Javascript
把项目从Python2.x移植到Python3.x的经验总结
2015/04/20 Python
wxPython使用系统剪切板的方法
2015/06/16 Python
Python 将Matrix、Dict保存到文件的方法
2018/10/30 Python
Python 实现文件打包、上传与校验的方法
2019/02/13 Python
python 修改本地网络配置的方法
2019/08/14 Python
Python API len函数操作过程解析
2020/03/05 Python
Python利用matplotlib绘制折线图的新手教程
2020/11/05 Python
Python获取android设备cpu和内存占用情况
2020/11/15 Python
用python批量移动文件
2021/01/14 Python
洛杉矶生活休闲而精致的基础品牌:Mika Jaymes
2018/01/07 全球购物
菲律宾优惠券网站:MetroDeal
2019/04/12 全球购物
瑞士网球商店:Tennis-Point
2020/03/12 全球购物
2014年乡镇卫生院工作总结
2014/11/24 职场文书
学前班语言教学计划
2015/01/20 职场文书
乐山大佛导游词
2015/02/02 职场文书
皇城相府导游词
2015/02/06 职场文书
Golang 如何实现函数的任意类型传参
2021/04/29 Golang
总结python多进程multiprocessing的相关知识
2021/06/29 Python
前端监听websocket消息并实时弹出(实例代码)
2021/11/27 Javascript