python 简单验证码 random模块

random 模块,产生随机数:

chr 将数字转成字母。

ascii 数字与字符对应表 链接

import random
temp=""
for i in range(0,4):
rad1 = random.randrange(0,4)
if rad1==0 or rad1==3 :
rad2 = random.randrange(0,10)
temp+=str(rad2)
else:
rad3= random.randrange(65,91)
c= chr(rad3)
temp+=c
print(temp)
上一篇:python学习笔记八:文件与目录


下一篇:oracle(sql)基础篇系列(一)——基础select语句、常用sql函数、组函数、分组函数