标签:and sci code col 模块 浮点 shuff shuf .sh
#返回随机浮点数 random.random() # 返回随机范围内整数 random.randint(1,100) # 从指定字符串中随机返回一个字符 random.choice(‘abhsjakk‘) # 从指定字符串中随机返回指定个字符,组成一个列表 random.sample(‘kdje‘,2)
# 洗牌, 把一个列表中的所有元素打乱顺序
a = list(range(100))
random.shuffle(a)
print(a)
可以生成随机验证码
# 从字母和数字中随机生成验证码 import random,string a = string.digits + string.ascii_letters b = random.sample(a,2)
标签:and sci code col 模块 浮点 shuff shuf .sh
原文地址:https://www.cnblogs.com/dempsey888/p/9568851.html