python_元组_元组与列表转换

Posted 翱翔的菜鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 <class list>
2 [1, 2, 3, 4, 5]
3 <class tuple>
4 (1, 2, 3, 4, 5)
5 <class tuple>
6 (1, 2, 3, 4, 5)
7 <class list>
8 [1, 2, 3, 4, 5]

 

以上是关于python_元组_元组与列表转换的主要内容,如果未能解决你的问题,请参考以下文章

21天学习python编程_元组

21天学习python编程_元组

Python元组

元组与列表的区别

Python基础(3) - 去掉列表或元组中的重复元素

3.python元组与列表