用Python编写分析Python程序性能的工具的教程( 二 )


print('Memory used:', end_mem - start_mem) # 计算程序运行期间内存使用情况
print(f"Current memory usage is {current / 10**6}MB; Peak was {peak / 10**6}MB") # 输出内存使用情况
@count
def func():
# 程序代码
analyze(func)
```
四、

推荐阅读