1 描述

__sizeof__() : 打印系统分配空间的大小

2 示例

def fun():
    pass

print(fun.__sizeof__())

运行

112
05-21 02:37