码迷,mamicode.com
首页 > 其他好文 > 详细

random模块

时间:2018-09-01 00:47:05      阅读:185      评论:0      收藏:0      [点我收藏+]

标签: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)

 

random模块

标签:and   sci   code   col   模块   浮点   shuff   shuf   .sh   

原文地址:https://www.cnblogs.com/dempsey888/p/9568851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!