Tuples in Python are :

2023

Tuples in Python are :

Answer: B. immutableTuples 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…

  1. A.

    mutable

  2. B.

    immutable

  3. C.

    modifiable

  4. D.

    convertible

Attempted by 1852 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.

Explore the full course: Hpsc Pgt Computer Science

Loading lesson…