美文网首页python 技术的魅力
python中利用random模块生成随机验证码

python中利用random模块生成随机验证码

作者: 君惜丶 | 来源:发表于2017-06-01 12:10 被阅读32次
    代码如下:
    #!/usr/bin/env python
    # _*_ coding:utf-8 _*_
    __author__ = 'junxi'
    
    import random
    checkcode = ''
    for i in range(4):
        current = random.randrange(0,4)
        if current != i:
            temp = chr(random.randint(65,90))    # chr返回整数对应的ascll字符
            print temp
        else:
            temp = random.randint(0,9)
        checkcode += str(temp)
    print(checkcode)
    
    运行:
    02V1
    

    相关文章

      网友评论

        本文标题:python中利用random模块生成随机验证码

        本文链接:https://www.haomeiwen.com/subject/mzosfxtx.html