import random
print(random.randint( 6, 12 )) #随机整数
print(random.uniform( 1, 10 )) #随机浮点数
random.choice( [1, 2, 3] ) #随机选取一个元素
print(random.sample( [1, 2, 3], 2 ))# 选取特定数量的字符
random.shuffle(['a', 'b', 'c']) #打乱顺序 洗牌
import random
print(random.randint( 6, 12 )) #随机整数
print(random.uniform( 1, 10 )) #随机浮点数
random.choice( [1, 2, 3] ) #随机选取一个元素
print(random.sample( [1, 2, 3], 2 ))# 选取特定数量的字符
random.shuffle(['a', 'b', 'c']) #打乱顺序 洗牌