最佳答案
如何洗牌对象列表?我尝试了random.shuffle
:
import random
b = [object(), object()]
print(random.shuffle(b))
但它输出:
None