📜  Python tuple()

📅  最后修改于: 2020-09-20 13:37:08             🧑  作者: Mango

内置的tuple()可用于在Python创建元组。

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

tuple()的语法为:

tuple(iterable)

tuple()参数

  1. 可迭代(可选)-可迭代(列表,范围等)或迭代器对象

如果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元组