如何确定 Python 中集合变量的大小?

Posted

技术标签:

【中文标题】如何确定 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 中集合变量的大小?的主要内容,如果未能解决你的问题,请参考以下文章

python中集合set,字典dict和列表list的区别以及用法

Java中集合概念

python中集合-set

表视图行中集合视图的同步水平滚动

ios中集合视图中的不同单元格大小

怎样响应propertygrid控件中集合编辑器的确定事件