python模块-random

Posted 张瑞东

tags:

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

print(random.randint(1,10)) 生成随机整数,下限必须小于上限
print(random.randrange(1,10)) 生成随机整数,参数为([start],stop,[step])
random.random()  生成0,1的随机浮点数

随机生成4位验证码:

 1 import random
 2 checkcode = \'\'
 3 for i in range(4):
 4     current =random.randrange(0,4)
 5     if current == 2:
 6         temp = chr(random.randint(65,90)) #大写字母
 7     elif current != 3:
 8         temp = chr(random.randint(97,122)) #小写字母
 9     else:
10         temp = random.randint(0,9)
11     checkcode += str(temp)
12 print(checkcode)
验证码

 

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

python之路---22 初始模块 random time collections functools

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

如何在 python 中并行化以下代码片段?

python 常用模块之random,os,sys 模块

python的random模块函数分析

Python 常用模块 -- collections模块,time模块,random模块,os模块,sys模块