Python中tuple()函数的基本语法是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中tuple()函数的基本语法是啥?相关的知识,希望对你有一定的参考价值。
Python中tuple()函数的基本语法是tuple(data)。
参考技术A Python 元组 tuple() 函数将列表转换为元组。语法:tuple( iterable )
参数:iterable -- 要转换为元组的可迭代序列。
实例:
list1= ['Google', 'Taobao', 'Runoob', 'Baidu']
tuple1=tuple(list1)
print(tuple1)
输出为:('Google', 'Taobao', 'Runoob', 'Baidu') 参考技术B Python中tuple()函数的基本语法如下:
tuple(iterable)
其中,iterable是一个可迭代的对象,例如一个列表或一个字符串。tuple()函数会将这个可迭代对象转换为一个元组,并返回结果。
例如,如果我们有一个列表 mylist = [1, 2, 3],我们可以使用tuple()函数将其转换为元组:
mytuple = tuple(mylist)
这样,mytuple就是一个包含三个元素的元组,即 (1, 2, 3)。
总的来说,Python中tuple()函数的基本语法是将一个可迭代的对象转换为一个元组,并返回结果。
python的tuple()
转载于:http://www.runoob.com/python/att-tuple-tuple.html
描述
Python 元组 tuple() 函数将列表转换为元组。
语法
tuple()方法语法:
tuple( seq )
参数
- seq -- 要转换为元组的序列。
返回值
返回元组。
实例
以下实例展示了 tuple()函数的使用方法:
例子1:
>>> tuple([1,2,3,4]) (1, 2, 3, 4) >>> tuple({1:2,3:4}) #针对字典 会返回字典的key组成的tuple (1, 3) >>> tuple((1,2,3,4)) #元组会返回元组自身 (1, 2, 3, 4)
例子2:
#!/usr/bin/python aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘]; aTuple = tuple(aList) print "Tuple elements : ", aTuple
以上实例输出结果为:
Tuple elements : (123, ‘xyz‘, ‘zara‘, ‘abc‘)
以上是关于Python中tuple()函数的基本语法是啥?的主要内容,如果未能解决你的问题,请参考以下文章
逗号语法:语句中悬挂逗号背后的基本原理是 SyntaxError