📜  python sizeof - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:19.486000             🧑  作者: Mango

代码示例2
>>> import sys
>>> x = 2
>>> sys.getsizeof(x)
24
>>> sys.getsizeof(sys.getsizeof)
32
>>> sys.getsizeof('this')
38
>>> sys.getsizeof('this also')
48