Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
l = [1000, 2000, 3000] print(l) del l for i in range(5): print('Hello')
那么“list”对象的内存在打印后是否会在 for 循环开始执行之前立即释放?