Question on List of List
Title
Question
Using del() function we can delete a element from list of list.
Can we do the same task using remove() function?
Python-3.4.3 Getting-started-with-Lists 12-13 min 30-40 sec
Answers:
Yes, we can delete a list element using both the functions del() and remove().
del() can also the list but remove() cannot.
Login to add comment