当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tuple()用法及代码示例


tuple() 内置函数可用于在 Python 中创建元组。

在 Python 中,元组是不可变的序列类型。创建元组的方法之一是使用tuple() 构造。

用法:

tuple(iterable)

参数:

  • iterable(可选)- 可迭代的(列表、范围等)或迭代器对象

如果 iterable 未传递给 tuple() ,则该函数返回一个空元组。

示例:使用 tuple() 创建元组

t1 = tuple()
print('t1 =', t1)

# creating a tuple from a list
t2 = tuple([1, 4, 6])
print('t2 =', t2)

# creating a tuple from a string
t1 = tuple('Python')
print('t1 =',t1)

# creating a tuple from a dictionary
t1 = tuple({1: 'one', 2: 'two'})
print('t1 =',t1)

输出

t1 = ()
t2 = (1, 4, 6)
t1 = ('P', 'y', 't', 'h', 'o', 'n')
t1 = (1, 2)

相关用法


注:本文由纯净天空筛选整理自 Python tuple()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。