Delete all objects in a list

后端 未结 4 499
小蘑菇
小蘑菇 2020-12-09 07:46

I create many object then I store in a list. But I want to delete them after some time because I create news one and don\'t want my memory goes high (in my case, it jumps to

4条回答
  •  感情败类
    2020-12-09 08:05

    Here's how you delete every item from a list.

    del c[:]
    

    Here's how you delete the first two items from a list.

    del c[:2]
    

    Here's how you delete a single item from a list (a in your case), assuming c is a list.

    del c[0]
    

提交回复
热议问题