扫码一下
查看教程更方便
Python 元组 tuple() 方法将列表转换为元组。
tuple()方法语法:
tuple(iterable)
返回元组。
以下实例展示了 tuple()方法的使用方法:
#!/usr/bin/python
aList = [123, 'xyz', 'zara', 'abc'];
aTuple = tuple(aList)
print "Tuple elements : ", aTuple
上述代码执行结果如下:
Tuple elements : (123, 'xyz', 'zara', 'abc')