python 列表排序,并转化为元组
时间: 2023-07-25 16:24:33 浏览: 154
Python 元组-元组和列表之间的转换
可以使用 Python 内置的 sorted 函数对列表进行排序,然后使用 tuple 函数将排序后的列表转换为元组。示例代码如下:
```python
my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]
sorted_list = sorted(my_list)
my_tuple = tuple(sorted_list)
print(my_tuple)
```
输出结果为:
```
(1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9)
```
阅读全文