Python-生成随机验证码

Posted 追梦的肥猪

tags:

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

import random

##生成随机验证码

def make_code(n):
    res = ‘‘
    for i in range(n):
        current = random.randint(0,n)
        if current == i:
            tmp = chr(random.randint(65,90))
        else:
            tmp = random.randint(0,9)
        res += str(tmp)
    print(res)

make_code(5)

 

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

Python生成随机验证码

学习python:实例2.用PIL生成随机验证码

Python生成验证码

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

PIL 生成随机验证码图片

随机生成验证码及python中的事务