import random

# 随机数(0-1)
print(random.random()) # 随机整数, 包含尾巴
print(random.randint(-1, 2)) # 不包含尾巴
print(random.randrange(-1, 2)) # 随机一个
random.choice('hello python') # 随机多个 返回列表
random.sample('hello python', 2) # 生成随机验证码
import string s = string.digits + string.ascii_letters
print(random.sample(s, 5)) # 洗牌a
a = [1,2,3,4,5,'a','ss']
random.shuffle(a)
05-22 03:31