how to clear up a List in python?

chris brat chrisBrat at gmail.com
Fri May 26 12:46:52 EDT 2006


Doesnt this do what the original poster is try accomplish?

Linnorms example -

>>> list1 = [0,1,2,3]
>>> list1
[0, 1, 2, 3]
>>> list1 = []
>>> list1
[]
>>>




More information about the Python-list mailing list