Please enable JavaScript to use CodeHS

Introduction to Python Programming

Lesson 10.3 Immutability

Description

In Python, strings have the property of “immutability” which means they cannot be mutated or changed. You can assign strings to variables, and reassign new strings to the same variable, but individual characters within a string cannot be reassigned.


Objective

Students will be able to:

  • explain what immutability is and how this applies to strings in Python