Sobes.tech
Junior

What immutable data types do you know?

sobes.tech AI

Answer from AI

  • int (integer)
  • float (floating point number)
  • complex (complex number)
  • str (string)
  • bool (boolean value)
  • tuple (tuple)
  • frozenset (immutable set)

Immutability means that after an object is created, its state (value) cannot be changed. Any operation that appears to modify an immutable object actually creates a new object.