Home »
Python »
Python Tuples MCQs
Which function is used to delete the particular element of the tuple?
24. Which function is used to delete the particular element of the tuple?
- Remove()
- Delete()
- Del()
- It is not possible to delete the particular element of the tuple
Answer: D) It is not possible to delete the particular element of the tuple
Explanation:
Since tuples are immutable, therefore you can not delete a particular element from the tuple.