Published: 15 January 2021 on channel: Code with Ish
7
3
This video shows how to delete an element from a List in Python
Example Code:-
#Delete an Element from a List
cars = ["Toyota","Ford","Honda","Mazda","Lexus"]
del cars[0]
del cars[3]
print(cars)