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

模块-random模块

时间:2020-06-06 18:56:52      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:整数   range   join   choices   列表   pre   and   随机   字母   

random模块

随机小数

random.random()      # 大于0且小于1之间的小数  0.7664338663654585

random.uniform(1,3) #大于1小于3的小数  1.6270147180533838

随机整数

random.randint(1,5)  # 大于等于1且小于等于5之间的整数

random.randrange(1,10,2) # 大于等于1且小于10之间的奇数

随机选择列表中的一个或者多个

#随机选择一个返回
random.choice([1,‘23‘,[4,5]])  # 1或者23或者[4,5]

# 随机选择多个返回,返回的个数为函数的第二个参数,也可以是choices
random.sample([1,‘23‘,[4,5]],2) #列表元素任意2个组合[[4, 5], ‘23‘]

随机打乱列表中元素的次序

#打乱列表顺序
item=[1,3,5,7,9]
random.shuffle(item) 

生成随机验证码

import random

def v_code():
    code = ‘‘
    for i in range(5):
        # 得到一个随机整数
        num = random.randint(0, 9)
        
        # 得到一个随机字母
        # chr将数字转换成字母
        alf = chr(random.randint(65, 90))
        # 随机从得到的数字、字母中选取一个,作为code的一部分
        add = random.choice([num, alf])

        code = "".join([code, str(add)])
    return code

print(v_code())

模块-random模块

标签:整数   range   join   choices   列表   pre   and   随机   字母   

原文地址:https://www.cnblogs.com/Hedger-Lee/p/13055841.html

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