What is Tuple? Explain the concept of Tuple in Python ?
Answers
Answered by
13
Answer:
- Python tuples are a data structure that store an ordered sequence of values. Tuples are immutable. This means you cannot change the values in a tuple. Tuples are defined with parenthesis.
Explanation:
# MrHandSome❤
Similar questions