python2 对回收后的整数复用内存不作处理
python3则改进了改设计,极大的减少了内存占用
例如
a = range(1000000000000)
del a
此时:
python2 对于a占用的内存并未释放出来;python3则恢复则删除的同时释放内存