Akolliy1
0
Q:

delete all elements in list python

your_list = [1,2,3,4,5,6,7,8,9,10]
your_list.clear() #List becomes [] empty
7
mylist = [1, 2, 3, 4]
mylist.clear()

print(mylist)
# []
5
# this clear whole elements from list
thislist = ["apple", "banana", "cherry"]
thislist.clear()
5
# removes item with given name in list
list = [15, 79, 709, "Back to your IDE"]
list.remove("Back to your IDE")

# removes last item in list
list.pop()
3
l = [1,2,3,4]
l.clear()
1

New to Communities?

Join the community