首页 > 代码库 > Python之两个列表一起打乱

Python之两个列表一起打乱

例子:
import random
c = list(zip(a, b))
random.shuffle(c)
a[:], b[:] = zip(*c)

 

Python之两个列表一起打乱