Python 垃圾回收 GC Garbage Collection demo import gc a=range(10000*10000) del a gc.collect() 排查内存泄露可以考虑使用 objgraph #Python
Leave a Reply