Random模块

Posted Sch01aR#

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Random模块相关的知识,希望对你有一定的参考价值。

random模块用来生成随机的数字或字母

#-*- coding:utf-8 -*-
__author__ = "MuT6 Sch01aR"

import random

print random.random()  #随机0-1之间的数
print random.uniform(1,10)  #随机1-10之间的数

print random.randint(1,10)  #随机1-10之间的整数
print random.randrange(1,10) #随机1-9之间的整数

print random.choice(\'hello\') #从字符串或列表中随机取
print random.sample(\'fuck you\',2) #随机取两个字母

#随机列表
a = [1,2,3,4,5,6]
random.shuffle(a)
print a

用random写个小程序,生成随机验证码

#-*- coding:utf-8 -*-
__author__ = "MuT6 Sch01aR"

import random

checkcode = \'\'

for i in range(5):
    current = random.randint(0,5)
    if current == i:
        tmp = chr(random.randint(65,90))
    else:
        tmp = random.randint(0,9)
    checkcode += str(tmp)

print (checkcode)

小程序的执行效果

 

以上是关于Random模块的主要内容,如果未能解决你的问题,请参考以下文章

21个常用代码片段

使用import导入random模块。使用该模块下的random()函数,生成一个0到1之间的?

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

PHP 代码片段

python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)

22 初始模块 random time collections functools