Python random.shuffle() 函数
Python random.shuffle() 函数将序列中的元素随机打乱
该方法会修改原序列
导入模块
import random
语法
random.shuffle (lst )
参数
参数 | 说明 |
---|---|
lst | 可以是一个序列或者元组 |
返回值
无
范例
下面的代码使用 random.shuffle() 随机打乱序列
>>> import random >>> l = ['PEK', 28, 'Li Bai', 'Tsinghua'] >>> random.shuffle(l) >>> l ['Tsinghua', 28, 'Li Bai', 'PEK']