Tuple और List के बीच क्या अंतर है
What is the difference between Tuple and List in Python
A
Tuple is mutable, List is immutable
B
Tuple uses [ ] brackets, List uses ( )
C
Tuple is immutable, List is mutable
D
Both are immutable
Explanation
Correct Answer: C) Tuple is immutable, List is mutable