python 基本数据类型占用内存空间大小的实例

作者:ben1949 时间:2021-08-10 21:59:03 

python中基本数据类型和其他的语言占用的内存空间大小有很大差别


import sys
a = 100
b = True
c = 100L
d = 1.1
e =""
f = []
g =()
h = {}
i = set([])

print " %s size is %d "%(type(a),sys.getsizeof(a))
print " %s size is %d "%(type(b),sys.getsizeof(b))
print " %s size is %d "%(type(c),sys.getsizeof(c))
print " %s size is %d "%(type(d),sys.getsizeof(d))
print " %s size is %d "%(type(e),sys.getsizeof(e))
print " %s size is %d "%(type(f),sys.getsizeof(f))
print " %s size is %d "%(type(g),sys.getsizeof(g))
print " %s size is %d "%(type(h),sys.getsizeof(h))
print " %s size is %d "%(type(i),sys.getsizeof(i))

<type 'int'> size is 12
<type 'bool'> size is 12
<type 'long'> size is 14
<type 'float'> size is 16
<type 'str'> size is 21
<type 'list'> size is 36
<type 'tuple'> size is 28
<type 'dict'> size is 140
<type 'set'> size is 116

来源:https://blog.csdn.net/u013679490/article/details/54408326

标签:python,内存,空间,大小
0
投稿

猜你喜欢

  • element-UI el-table树形数据 修改小三角图标方式

    2023-07-02 17:09:53
  • ASP.NET web.config中 数据库连接字符串加密解密

    2024-01-14 07:02:09
  • Golang使用channel实现一个优雅退出功能

    2024-04-28 09:14:28
  • vue-property-decorator用法详解

    2024-05-29 22:49:55
  • Python3中urlopen()的用法解读

    2023-11-22 20:26:19
  • python 3利用Dlib 19.7实现摄像头人脸检测特征点标定

    2022-07-31 05:54:21
  • Python实现冒泡,插入,选择排序简单实例

    2022-01-07 06:47:25
  • JS实现倒计时图文效果

    2024-04-28 09:48:28
  • 用Python删除本地目录下某一时间点之前创建的所有文件的实例

    2021-07-29 05:34:59
  • MySQL授权命令grant的使用方法小结

    2024-01-22 14:09:22
  • Django的ListView超详细用法(含分页paginate)

    2021-02-13 00:53:41
  • php结合js实现点击超链接执行删除确认操作

    2023-11-15 03:30:51
  • JS获取当前时间的年月日时分秒及时间的格式化的方法

    2024-04-17 10:23:00
  • linux安装Python3.4.2的操作方法

    2022-06-17 19:19:15
  • Coda 前端开发插件 F2E Tools

    2009-09-22 14:53:00
  • Python Pandas数据合并pd.merge用法详解

    2022-07-18 22:15:47
  • 如何通俗的解释TypeScript 泛型

    2024-04-10 16:18:31
  • 使用Python合成图片的实现代码(图片添加个性化文本,图片上叠加其他图片)

    2022-03-17 20:04:01
  • Python实现CAN报文转换工具教程

    2022-06-13 02:34:06
  • SQL中distinct 和 row_number() over() 的区别及用法

    2024-01-12 20:16:35
  • asp之家 网络编程 m.aspxhome.com