Python元組是不可變的數據結構,一旦創(chuàng)建后就不能修改。如果想要保存元組遍歷后的數據,可以將其存儲到一個新的變量中或者存儲到列表中。
以下是兩種保存元組遍歷后數據的方法:
方法一:存儲到新變量中
my_tuple = (1, 2, 3, 4, 5)
new_data = []
for item in my_tuple:
new_data.append(item)
print(new_data)
輸出:
[1, 2, 3, 4, 5]
方法二:存儲到列表中
my_tuple = (1, 2, 3, 4, 5)
new_data = list(my_tuple)
print(new_data)
輸出:
[1, 2, 3, 4, 5]
無論使用哪種方法,都可以保存元組遍歷后的數據,并且可以進一步處理或修改。