Computer Science, asked by sumanchauhan40, 4 months ago

Write a statement to add a single item in a tuple.​

Answers

Answered by ItzTannie
1

Answer:

You can't add elements to a tuple because of their immutable property. There's no append() or extend() method for tuples, You can't remove elements from a tuple, also because of their immutability.

Hope it helps you.. :)

Explanation:

Similar questions