Course Content
Python Data Structures
Python Data Structures
Update 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.
tuple_1 = (10, 10, 30, 40, 50, 60, 70) list_1 = list(tuple_1) list_1[1] = 20 tuple_1 = tuple(list_1) print(tuple_1)
Task
You have the following tuple:
You need to achieve this tuple:
Please update the tuple.
Thanks for your feedback!
Update 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.
tuple_1 = (10, 10, 30, 40, 50, 60, 70) list_1 = list(tuple_1) list_1[1] = 20 tuple_1 = tuple(list_1) print(tuple_1)
Task
You have the following tuple:
You need to achieve this tuple:
Please update the tuple.
Thanks for your feedback!
Update 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.
tuple_1 = (10, 10, 30, 40, 50, 60, 70) list_1 = list(tuple_1) list_1[1] = 20 tuple_1 = tuple(list_1) print(tuple_1)
Task
You have the following tuple:
You need to achieve this tuple:
Please update the tuple.
Thanks for your feedback!
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.
tuple_1 = (10, 10, 30, 40, 50, 60, 70) list_1 = list(tuple_1) list_1[1] = 20 tuple_1 = tuple(list_1) print(tuple_1)
Task
You have the following tuple:
You need to achieve this tuple:
Please update the tuple.