码迷,mamicode.com
首页 > 其他好文 > 详细

验证码定时刷新

时间:2018-11-18 17:05:32      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ret   class   time   star   elf   can   style   div   self   

from threading import Thread, Timer
import random


class code:
    def __init__(self):
        self.make_cach()

    def make_cach(self, interval = 5):
        self.cach = self.make_code()
        print(self.cach)
        self.t = Timer(interval, self.make_cach)
        self.t.start()

    def make_code(self,n=4):
        res = ‘‘
        for i in range(n):
            s1 = str(random.randint(0,9))
            s2 = chr(random.randint(65,90))
            res += random.choice([s1, s2])
        return res

    def check(self):
        while True:
            code = input(>>>:).strip()
            if code.upper() == self.cach:
                print(验证成功)
                self.t.cancel()
                break


boj = code()
boj.check()

 

验证码定时刷新

标签:ret   class   time   star   elf   can   style   div   self   

原文地址:https://www.cnblogs.com/Nopeeee/p/9978380.html

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