random模块
Posted Linux的爱好者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random模块相关的知识,希望对你有一定的参考价值。
>>> import random
random.random()#随机生成浮点数,范围是[0,1),大于0,小于1
random.randint()#随机生成整数,范围是[a,b]
random.randrange(2)#随机生成整数,范围是[0,2)
random.choice(‘hello‘)#随机选择序列(字符串,元组,列表)里面的值
>>> random.sample(‘hello‘,2) #从前面的序列当中随机取2位返回一个列表
[‘h‘, ‘l‘]
random.uniform(1,3)#返回的是1-3之间的浮点数,大于1,小于3
>>> x = [1,2,3,4,5,6]
>>> random.shuffle(x)#洗牌的功能,把有顺序打乱成无序的
>>> x
[2, 5, 6, 3, 4, 1]
import random
checkcode = ‘‘
for i in range(4):
res = random.randint(1,4)
if res == i :
tmp = chr(random.randint(65,90))
else:
tmp = random.randint(0, 9)
checkcode += str( tmp )
print(checkcode)
以上是关于random模块的主要内容,如果未能解决你的问题,请参考以下文章
使用import导入random模块。使用该模块下的random()函数,生成一个0到1之间的?
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)