2019-02-01 产生验证码: 用户输入的值和显示的值相同时显示Correct,否则继续生成随机验证码等待用户输入 def check_code(): import random checkcode='' for i in range(4): current=random.randrange(0,4) if current != i: temp=chr(random.randint(65,90)) else: temp= random.randint(0,9) checkcode +=str…
运算符 1.算术运算符 % 取余运算符,返回余数 ** 幂运算符 //返回商的整数部分 2.逻辑运算符 and 与运算符 a and b 如果a为False是,表达式为False,如果a为True返回b的布尔值 or 或运算符 a or b ,如果a为True时,表达式为True,如果a为False则返回b的布尔值 not 非运算符,返回当前布尔值的相反值,如果a为False则返回True 逻辑运算符 顺序 not > and >or 真是坑啊 ''' 逻辑运算符 and 同…