Tuples in Python are :
2023
Tuples in Python are :
- A.
mutable
- B.
immutable
- C.
modifiable
- D.
convertible
Attempted by 1415 students.
Show answer & explanation
Correct answer: B
Tuples in Python are collections of items that cannot be changed after creation. This means once a tuple is created, you cannot add, remove, or modify elements. This property is called immutability. Tuples are often used when you want to store data that should not be altered, such as coordinates or configuration settings.