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()用法及代码示例
- Python turtle.write_docstringdict()用法及代码示例
- Python turtle.delay()用法及代码示例
- Python turtle.write()用法及代码示例
- Python turtle.getpen()用法及代码示例
- Python turtle.end_fill()用法及代码示例
- Python turtle.onscreenclick()用法及代码示例
- Python turtle.speed()用法及代码示例
- Python turtle.up()用法及代码示例
- Python turtle.tilt()用法及代码示例
- Python turtle.fillcolor()用法及代码示例
- Python turtle.done()用法及代码示例
- Python turtle.isvisible()用法及代码示例
- Python turtle.reset()用法及代码示例
- Python turtle.degrees()用法及代码示例
- Python turtle.circle()用法及代码示例
- Python turtle.left()用法及代码示例
- Python turtle.get_shapepoly()用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.addshape()用法及代码示例
注:本文由纯净天空筛选整理自 Python tuple()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。