码迷,mamicode.com
首页 > 其他好文 > 详细

tuple()方法

时间:2018-12-26 15:54:13      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:列表   输出   tuple   字典   参数   字符   法语   方法   组成   

tuple()方法

描述

元组 tuple() 方法用于将可迭代对象(字符串、列表、元祖、字典)转换为元组。

语法

tuple() 方法语法:

tuple(iterable)

参数

  • iterable -- 要转换为元组的可迭代对象(字符串、列表、元祖、字典)。

返回值

返回元组。

实例 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

aList = [123, xyz, zara, abc]
aTuple = tuple(aList)
print ("Tuple elements : ", aTuple)

以上实例输出结果为:

Tuple elements :  (123, xyz, zara, abc)

 

tuple()方法

标签:列表   输出   tuple   字典   参数   字符   法语   方法   组成   

原文地址:https://www.cnblogs.com/xiaohei001/p/10178972.html

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