Python list和tuple的相互转换?
Posted lvmenghui0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python list和tuple的相互转换?相关的知识,希望对你有一定的参考价值。
list转为tuple:
temp_list = [1,2,3,4,5]
将temp_list进行强制转换:tuple(temp_list)
查看是否转换成功:print type(temp_list)
tuple 转为list:
temp_tuple = (1,2,3)
方法类似,也是进行强制转换即可:list(temp_tuple)
查看是否转换成功:print type(temp_tuple)
以上是关于Python list和tuple的相互转换?的主要内容,如果未能解决你的问题,请参考以下文章
python 中各类型介绍及相互转换 - list, array, tensor, dict, tuple, DataFrame
python中PIL.Image,OpenCV,Numpy图像格式相互转换