<Apti
Code
/>
Back
Question 422: How do you remove an element from a list in Python?
tcs
wipro
infosys
general
aptitude
lists
python-programming
Thepop(index)method is used to remove and return the element at the specified index in a list.
remove(element)
pop(index)
delete(element)
discard(element)
Submit Answer
Show Answer
Previous
Next