Python 改变元组的值
更改元组的值
元组一旦创建,就不能更改其值。元组是**不可更改的**,或者也称为**不可变的**。
但是有一个变通方法。您可以将元组转换为列表,更改列表,然后将列表转换回元组。
示例
将元组转换为列表以便能够更改它
x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)
print(x)
自己试试 »
元组一旦创建,就不能更改其值。元组是**不可更改的**,或者也称为**不可变的**。
但是有一个变通方法。您可以将元组转换为列表,更改列表,然后将列表转换回元组。
将元组转换为列表以便能够更改它
x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)
print(x)
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]