python学习笔记011——内置函数__sizeof__()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习笔记011——内置函数__sizeof__()相关的知识,希望对你有一定的参考价值。

1 描述

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

2 示例

def fun():
    pass

print(fun.__sizeof__())

运行

112

 

以上是关于python学习笔记011——内置函数__sizeof__()的主要内容,如果未能解决你的问题,请参考以下文章

python学习笔记011——内置函数__module____name__

Python学习笔记011——内置函数exec()

Python学习笔记011——内置函数eval()

python学习笔记011——内置函数sum()

学习笔记———Python内置函数dir()

Python学习笔记__2.1章 调用函数