################################
# 测试函数运行内存# coding=utf-8# pip install memory_profiler# pip install psutil# 在pycharm包管理器里装from memory_profiler import profile @profiledef test(): list_m = []for i in range(1000000):
list_m.append(i)print len(list_m)
test()################################