Python Programming - Tuples - Discussion

Discussion Forum : Tuples - General Questions (Q.No. 20)
20.
Which method is used to remove the first occurrence of a specific element in a tuple?
tuple.delete(element)
tuple.remove(element)
tuple.discard(element)
tuple.pop(element)
Answer: Option
Explanation:
The remove() method is used to remove the first occurrence of a specific element in a tuple.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.