Answers for "how to delete lists after using them in python"

18

clear python list

your_list = [1,2,3,4,5,6,7,8,9,10]
your_list.clear() #List becomes [] empty
Posted by: Guest on April-22-2020
1

How do you clear a list

lst = [1,2,3,4,5,6,7,8,9,10]
lst.clear()
Posted by: Guest on September-17-2020
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

Code answers related to "how to delete lists after using them in python"

Python Answers by Framework

Browse Popular Code Answers by Language