how can you add an extra element to a tuple ?
Answers
Answered by
1
Answer:
For now, lets just say tuples are immutable in general.
- You can't add elements to a tuple because of their immutable property. ...
- You can't remove elements from a tuple, also because of their immutability. ...
- You can find elements in a tuple since this doesn't change the tuple.
Similar questions