list强制转换为tuple
时间: 2023-12-30 18:23:00 浏览: 160
Python代码-set-list-tuple三者类型间转换.py
可以使用tuple()函数将list强制转换为tuple。以下是一个例子:
```python
my_list = [1, 2, 3, 4, 5]
print("List: ", my_list)
print("Type of List: ", type(my_list))
my_tuple = tuple(my_list)
print("Tuple: ", my_tuple)
print("Type of Tuple: ", type(my_tuple))
```
输出:
```
List: [1, 2, 3, 4, 5]
Type of List: <class 'list'>
Tuple: (1, 2, 3, 4, 5)
Type of Tuple: <class 'tuple'>
```
在这个例子中,我们首先定义了一个list,然后使用tuple()函数将其强制转换为tuple。最后,我们打印了原始list和转换后的tuple以及它们的类型。
阅读全文