Python验证码简单实现(数字和大写字母组成的4位验证码)

#数字和英文大写字母的4位随机数
def checkcode(): #def 定义方法  checkcode() 方法名()
    import random # 导入包
    checkcode = ""
    string = range(0,4)
    for i in string:
        current = random.randrange(0,3) #randrange随机数  参数1<=随机数<=参数2
        if current != i:
            temp = chr(random.randint(65, 90))
        else:
            temp = random.randint(0,9)
        checkcode += str(temp)
    return checkcode #此方法返回值:checkcode(变量)
while True:
    yanzhengma = checkcode()
    print("验证码:",yanzhengma)
    user_in = str(input("请输入验证码:"))
    if user_in.lower() == yanzhengma.lower() :
        print("验证成功")
        break
    else :
        print("输入错误,请重新输入!")

运行结果

Python验证码简单实现(数字和大写字母组成的4位验证码)_第1张图片

 

转载于:https://www.cnblogs.com/Dzc163/p/8484009.html

你可能感兴趣的:(Python验证码简单实现(数字和大写字母组成的4位验证码))