码迷,mamicode.com
首页 > 编程语言 > 详细

python 实例

时间:2021-06-20 18:07:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lse   字母   一个   dex   code   个数   验证   ==   验证码   

# 四位验证码

"""四位数验证码"""
code=""
for i in range(4):
    print(i)
    index = random.randrange(4)  #0-3 中随机取一个数
    if index != i and index + 1 != i:
        code +=chr(random.randint(97,122))  #小写字母
    elif index + 1 == i:
        code +=chr(random.randint(65,90))   #大写字母
    else:
        code +=str(random.randint(1,9))
print(code)

 

python 实例

标签:lse   字母   一个   dex   code   个数   验证   ==   验证码   

原文地址:https://www.cnblogs.com/huxl1/p/14906169.html

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