Python3 tuple 函数

Posted AI大道理

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 tuple 函数相关的知识,希望对你有一定的参考价值。

Python3 tuple 函数

技术图片 Python3 内置函数


描述

tuple 函数将列表转换为元组。。

 

语法

以下是 tuple 的语法:

tuple( seq )

参数

  • seq -- 要转换为元组的序列。

返回值

返回元组。


实例

以下展示了使用 tuple 的实例:

实例

>>>list1= [Google, Taobao, Runoob, Baidu] >>> tuple1=tuple(list1) >>> tuple1 (Google, Taobao, Runoob, Baidu)

以上是关于Python3 tuple 函数的主要内容,如果未能解决你的问题,请参考以下文章

Python3 reversed 函数

Python3复习笔记-runoob

Python3复习笔记-runoob

python3中的zip函数

Python3-笔记-C-002-函数-zip

学习笔记:python3,代码片段(2017)