Python Programming - Functions - Discussion

Discussion Forum : Functions - General Questions (Q.No. 41)
41.
How do you remove the last element from a list?
Using list.remove()
Using list.delete()
Using list.pop()
Using list.drop()
Answer: Option
Explanation:
The list.pop() method removes and returns the last element from a list.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.