Answers for "python remove complete list"

0

how to delete lists after using them in python

lst = ['i1', 'i2', 'i3']
lst.clear() #clears the contents of list
#lst[:] can also be used
#fastest is  lst *= 0
Posted by: Guest on September-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language