Python 3 – Tuple tuple() 方法
描述
tuple() 方法将一个项目列表转换为元组。
语法
以下是 tuple() 方法的语法 –
tuple( seq )
参数
seq - 这是要转换为元组的元组。
返回值
此方法返回元组。
示例
以下示例显示了tuple()方法的用法。
#!/usr/bin/python3
list1 = ['maths', 'che', 'phy', 'bio']
tuple1 = tuple(list1)
print ("元组元素:", tuple1)
结果
运行上面的程序时,会产生以下结果 –
元组元素: ('maths', 'che', 'phy', 'bio')