Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Update a Tuple | Tuple
Python Data Structures

Update a TupleUpdate a Tuple

To modify values within a tuple, you can use a technique similar to the one for deletion. Because a tuple is immutable, you can't directly alter its elements without encountering an error. However, by converting the tuple to a list, you can easily make the desired changes. Let's examine an example.

Task

You have the following tuple:

You need to achieve this tuple:

Please update the tuple.

Everything was clear?

Section 3. Chapter 5
toggle bottom row
course content

Course Content

Python Data Structures

Update a TupleUpdate a Tuple

To modify values within a tuple, you can use a technique similar to the one for deletion. Because a tuple is immutable, you can't directly alter its elements without encountering an error. However, by converting the tuple to a list, you can easily make the desired changes. Let's examine an example.

Task

You have the following tuple:

You need to achieve this tuple:

Please update the tuple.

Everything was clear?

Section 3. Chapter 5
toggle bottom row
some-alt