码迷,mamicode.com
首页 > 编程语言 > 详细

python的tuple()

时间:2017-04-29 10:54:50      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:ref   方法   http   com   组成   实例   返回字典   使用   list   

转载于: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()

标签:ref   方法   http   com   组成   实例   返回字典   使用   list   

原文地址:http://www.cnblogs.com/nickup/p/6784464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!