Python如何查看变量占用空间大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python如何查看变量占用空间大小相关的知识,希望对你有一定的参考价值。
在c语言中提供了sizeof可以用来查看一个变量占用的空间大小,在python中可以使用sys模块下的getsizeof方法来判断变量占用的空间大小。其文档解释如下:[mw_shl_code=python,true]sys.getsizeof(object[, default]):[/mw_shl_code]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.使用示例:[mw_shl_code=python,true]import sysv = 1print sys.getsizeof(v)s = 'abc'print sys.getsizeof(s)[/mw_shl_code]
参考技术A python中用len(),如果导入工具包也可以调用sizeof函数如何确定 Python 中集合变量的大小?
【中文标题】如何确定 Python 中集合变量的大小?【英文标题】:How to determine the size of a set variable in Python? 【发布时间】:2019-12-05 16:01:51 【问题描述】:我的代码如下,表数据在set(cur)
中捕获。有没有办法在linux/unix中找到这个变量占用的空间? (内存或缓冲空间)
cur.execute("select A , B , C from DeptTable")
dept_entries = set(cur)
cur.execute("select A , B , C from EmployeeTable where EmplName in ('A','B')")
for empl in cur:
if empl in dept_entries:
print(empl, 'Yes')
else:
print(empl, 'No')
【问题讨论】:
【参考方案1】:我会推荐使用sys.getsizeof
:
>>> import sys
>>> sys.getsizeof(dept_entries)
12345
>>> sys.getsizeof(set([1,2,3]))
224
>>> sys.getsizeof(set([1,2,3,4,5]))
736
【讨论】:
非常感谢您的回复。我可以知道这个大小是 KB 还是 MB ? 它以字节为单位,要将其转换为 KB 或 MB 或其他任何值,您可以使用答案之一 here。以上是关于Python如何查看变量占用空间大小的主要内容,如果未能解决你的问题,请参考以下文章