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

random库使用例子——生成随机验证码

时间:2017-07-16 19:17:10      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:port   log   coding   author   utf-8   for   sci   dom   code   

用于生成4位随机验证码

#_*_coding:utf-8_*_
#__author__ = "csy"
import random
checkcode=‘‘
for i in range(4):
    current=random.randrange(0,4)   #生成随机数与循环次数比对
    current1 = random.randrange(0,4)
    if current == i:
        tmp=chr(random.randint(65,90))   #65~90为ASCii码表A~Z
    elif current1 == i:
        tmp = chr(random.randint(97,122))   #97~122为ASCii码表a~z
    else:
        tmp=random.randint(0,9)
    checkcode+=str(tmp)
print(checkcode)

 

random库使用例子——生成随机验证码

标签:port   log   coding   author   utf-8   for   sci   dom   code   

原文地址:http://www.cnblogs.com/csy113/p/7191263.html

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