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

random随机数模块

时间:2018-06-20 18:38:39      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:choice   tmp   字母   随机验证码   fas   .sh   ada   sample   dom   

#wuyanfeng
import random
‘‘‘
random.random()#随机数0到1的浮点数模块
random.randint(1,7)#随机1到7闭区间的整数
random.randrange(1,3)#不包含3的随机整数
random.choice(‘adasdf‘)#序列、列表、元组,随机取值:adsbadfas,[1,3,4]
random.sample(‘hello‘,2)#序列中随机去两位返回
random.uniform(1,3)#指定区间的浮点数
#洗牌功能
items = [1,2,3,4,5,6,7]
random.shuffle(items)#打乱顺序
‘‘‘
#生成随机验证码
checkcode = ‘‘
for i in range(4):
checkcode+=str(i)
print(checkcode)
checkcode = ‘‘
for i in range(4):
current=random.randint(1,9)
checkcode+=str(current)
print(checkcode)

checkcode = ‘‘
for i in range(4):
#i=0
current=random.randrange(0,4)
#字母
if current==i:
tmp=chr(random.randint(65,90))#获取字母
# 数字
else:
tmp=random.randint(0,9)
checkcode+=str(tmp) #
print(checkcode)

random随机数模块

标签:choice   tmp   字母   随机验证码   fas   .sh   ada   sample   dom   

原文地址:https://www.cnblogs.com/wzsx/p/9204511.html

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