Computer Science, asked by ayush87135, 2 months ago

how can you add an extra element to a tuple ?​

Answers

Answered by sunnykrpatel54021
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