Answers for "deleting a list in python"

7

how to clear all elements in a list python

# this clear whole elements from list
thislist = ["apple", "banana", "cherry"]
thislist.clear()
Posted by: Guest on May-17-2020
8

how to delete list python

# delete by index
a = ['a', 'b', 'c', 'd']
a.pop(0)
print(a)
['b', 'c', 'd']
Posted by: Guest on May-07-2020
4

deleting a list in python

# deletes whole list
thislist = ["apple", "banana", "cherry"]
del thislist
Posted by: Guest on May-17-2020

Code answers related to "deleting a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language