首页 > 编程语言 > 详细

python random() 简单实现验证码

时间:2017-10-23 00:25:01      阅读:327      评论:0      收藏:0      [点我收藏+]
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() 简单实现验证码

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!