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

 

相关文章: