>>> import random random.sample(‘abcdefghij‘, 3) # [‘a‘, ‘d‘, ‘b‘]
在一个列表中随机取指定个数的元素
原文:https://www.cnblogs.com/yibeimingyue/p/13890743.html