📅  最后修改于: 2020-09-20 13:37:08             🧑  作者: Mango
在Python,元组是不可变的序列类型。创建元组的方法之一是使用tuple()
构造。
tuple()
的语法为:
tuple(iterable)
如果iterable
没有传递给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元组