Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 287 Bytes

48.md

File metadata and controls

18 lines (13 loc) · 287 Bytes
@author jackzhenguo
@desc 
@date 2019/3/4

48 查看变量所占字节数

In [1]: import sys

In [2]: a = {'a':1,'b':2.0}

In [3]: sys.getsizeof(a) # 占用240个字节
Out[3]: 240
[上一个例子](47.md) [下一个例子](49.md)