码迷,mamicode.com
首页 > 编程语言 > 详细

python random() 简单实现验证码

时间:2017-10-23 01:13:09      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:temp   import   输入验证码   for   验证码   python   str   current   range   

import random
while True:
code = ‘‘
for i in range(4):
current = random.randrange(0,4)
if current == i:
temp = chr(random.randint(65,90))
else:
temp = str(random.randint(0,9))
code+=temp
print(code)
input_user = input("请输入验证码:")
if input_user == code:
print("。。。。。。。。。欢迎。。。。。。。")
break
else:
print("您输入的验证码不正确。")

python random() 简单实现验证码

标签:temp   import   输入验证码   for   验证码   python   str   current   range   

原文地址:http://www.cnblogs.com/jcplee/p/7712606.html

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