python打乱列表
时间: 2023-12-01 22:42:09 浏览: 129
Python使用random.shuffle()打乱列表顺序的方法
以下是两种Python打乱列表的方法:
1. 手动打乱列表元素顺序
```python
import random
my_list = [1, 2, 3, 4, 5]
random.shuffle(my_list)
print(my_list) # 输出:[2, 4, 1, 5, 3]
```
2. 使用random模块打乱列表
```python
import random
my_list = [1, 2, 3, 4, 5]
randomized_list = random.sample(my_list, len(my_list))
print(randomized_list) # 输出:[2, 5, 1, 4, 3]
```
阅读全文