Python 生成验证码

Posted

tags:

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

temp2 = ""
for i in range(6):
    num = random.randrange(0,6)
    if num == 1 or num == 3 or num ==5:
        temp2 = temp2 + str(num)
    else:
        num2 =random.randrange(65,91)
        temp2 +=chr(num2)
print(temp2)

 

以上是关于Python 生成验证码的主要内容,如果未能解决你的问题,请参考以下文章

Python random随机生成6位验证码示例代码

三条代码 搞定 python 生成验证码

python快速生成验证码(密码)

Python生成随机验证码

Python之验证码的生成

Python生成验证码