import random
print(random.randint(1,23))#随机整数
l=[1,2,3,4]
s='abcdefeg'
print(random.choice(s))#随机选择一个元素
print(random.sample(s,3))#随机选择几个元素
random.shuffle(l) #只能传list,打乱l的顺序
f = random.uniform(1,19) #取随机的小数
newf = round(f,3) #取几位小数
转载于:https://www.cnblogs.com/wangtingting920416/p/10026749.html