【Python基础函数笔记】random.shuffle()

 官方文档:random --- 生成伪随机数 — Python 3.10.11 文档

【Python基础函数笔记】random.shuffle()_第1张图片

【Python基础函数笔记】random.shuffle()_第2张图片

import random
a=[['[email protected]','sunny'],['[email protected]','zhangsan'],['[email protected]','lisi'],['[email protected]','wangwu']]
random.shuffle(a)
print(a)

random.shuffle()用来打乱列表的。

你可能感兴趣的:(Python,python,开发语言)