python--随机数
1 import random 2 3 4 print(random.randint(1, 10)) # 产生 1 到 10 的一个整数型随机数 5 print(random.random()) # 产生 0 到 1 之间的随机浮点数 6 print(random.uniform(1.1, 5.4)) # 产生 1.1 到 5.4 之间的随机浮点数,区间可以不是整数 7 print(random.choice('tomorrow')) # 从序列中随机选取一个元素 8 print(random.randrange(1, 100, 2)) # 生成从1到100的间隔为2的随机整数 9 10 a = [1, 3, 5, 6, 7] # 将序列a中的元素顺序打乱 11 random.shuffle(a) 12 print(a)