Computer Science, asked by uma3823, 19 days ago

write a python program to delete a list. ​

Answers

Answered by BrainlyJossh
0

In Python, use list methods clear() , pop() , and remove() to remove items (elements) from a list. It is also possible to delete items using del statement by specifying a position or range with an index or slice. See the following article for adding items to the list.

Similar questions