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)
在学习过程中有什么不懂得可以加
我的python学习交流扣扣qun,688244617
群里有不错的学习教程、开发工具与电子书籍。
与你分享python企业当下人才需求及怎么从零基础学习好python,和学习什么内容。

运行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)