Is there any way to manually remove an object which the garbage collection refuses to get rid of even when I call gc.collect()? Working in Python 3.0
gc.collect()
del Or None are your only friends
del
None
>>> a = "Hello" >>> a = None Or >>> del a