python的tuple函数功能
时间: 2023-11-15 08:54:19 浏览: 121
Python 元组(Tuple)操作详解
5星 · 资源好评率100%
tuple函数是Python中的一个内置函数,用于将可迭代对象(例如列表、字符串等)转换为元组。元组是不可变的有序序列,使用圆括号来表示。
下面是tuple函数的使用示例:
```python
# 将列表转换为元组
list1 = [1, 2, 3, 4, 5]
tuple1 = tuple(list1)
print(tuple1) # 输出:(1, 2, 3, 4, 5)
# 将字符串转换为元组
str1 = "hello"
tuple2 = tuple(str1)
print(tuple2) # 输出:('h', 'e', 'l', 'l', 'o')
```
阅读全文