Опубликовано: 15 Январь 2021 на канале: 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)