python内存分析

Posted bryant24

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python内存分析相关的知识,希望对你有一定的参考价值。

  • 安装
    首先安装memory_profiler和psutil
    pip install memory_profiler
    pip install psutil

  • 在需要分析的函数前面添加装饰器@profile
@profile()
def call():
    a = list()
    for i in range(10000 * 100):
        a .append(i)

运行call后的输出:
Line # Mem usage Increment Line Contents
================================================
283 40.1 MiB 40.1 MiB @profile
284 def call():
285 40.1 MiB 0.0 MiB a = list()
286 44.1 MiB 0.0 MiB for i in range(10000 * 10):
287 44.1 MiB 0.3 MiB a .append(i)

以上是关于python内存分析的主要内容,如果未能解决你的问题,请参考以下文章

『Python』内存分析_list和array的内存增长模式

python的内存分析和处理

python 内存分析

一行代码搞定 Python 逐行内存消耗分析

python 内存分析

python基础(内存分析,不引入第三方变量的方式交换变量的值)