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
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.
a
c
del c[0]