天天看點

python元組與清單互相轉換_python_元組_元組與清單轉換

元組 和 清單之間的轉換

使用 list 函數 可以把 元組 轉換成 清單

list(元組)

使用 tuple 函數 可以把 清單 轉換成 元組

tuple(清單)

例子:

1 #清單轉換元組

2 num_list = [1,2,3,4,5]3 print(type(num_list))4 print(num_list)5 num_tuple =tuple(num_list)6 print(type(num_tuple))7 print(num_tuple)8

9 #元組轉換清單

10 num_tuple_01 = (1,2,3,4,5)11 print(type(num_tuple_01))12 print(num_tuple_01)13 num_list_01 =list(num_tuple_01)14 print(type(num_list_01))15 print(num_list_01)

傳回值:

1

2 [1, 2, 3, 4, 5]3

4 (1, 2, 3, 4, 5)5

6 (1, 2, 3, 4, 5)7

8 [1, 2, 3, 4, 5]