Answers for "Python List clear()"

7

how to clear a list in python

yourlist = [1,2,3,4,5,6,7,8]
del yourlist[:]
Posted by: Guest on April-08-2020
1

how to clear the list in python

thislist = ["apple", "banana", "cherry"]
thislist.clear()
print(thislist)
Posted by: Guest on December-24-2021
0

Python List clear()

# list of cars
cars = ['Benz',('volkswagen','BMW'),'Ford','Ferrari',('volkswagen','BMW')]
numbers= [1,(1,3),5,7,(1,3),3,1,6,(1,3)]

# deletes all the elements in the car list
del cars[:]
print("After clearing the car list = ",cars)

# deletes all the elements in the number list
del numbers[:]
print("After clearing the number list = ",numbers)
Posted by: Guest on March-29-2022
0

Python List clear()

# list of cars
cars = ['Benz',('volkswagen','BMW'),'Ford','Ferrari',('volkswagen','BMW')]
numbers= [1,(1,3),5,7,(1,3),3,1,6,(1,3)]

# clear the car list
cars.clear()
print("After clearing the car list = ",cars)

# clear the number list
numbers.clear()
print("After clearing the number list = ",numbers)
Posted by: Guest on March-29-2022

Python Answers by Framework

Browse Popular Code Answers by Language