博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 登陆接口
阅读量:4956 次
发布时间:2019-06-12

本文共 1007 字,大约阅读时间需要 3 分钟。

 

username = [] password = [] f1 = open("username_list.txt") for  name in f1.readline():       username.append(name.strip('\n')) f1.close() f2 = open('password_list.txt') for  pwd in f2.readline():     for pwd in  f2.readline():         f2.close()         name = input("please input username:")         times = 0 while name in username:     f3 = open('lock_list.txt')     lock = []     for line in f3.readline():         lock.append(line.strip('\n'))     f3.close()     if name in lock:         print("you count is locking")         break     pwd = input("please input you password:")     if pwd in password:         print("welcome you login the system!")         break     else:         print("your password is wrong")         times += 1         if times ==3:             print("your account is locked")             f = open('lock_list.txt','a')             f.write('%s\n'%name)             break         else:             print("your username is wrong")

转载于:https://www.cnblogs.com/quemengqio/p/6292804.html

你可能感兴趣的文章
64位UBUNTU下安装adobe reader后无法启动
查看>>
iTextSharp带中文转换出来的PDF文档显示乱码
查看>>
阶乘因式分解(一)
查看>>
qt学习记录-----3.信号与槽的问题
查看>>
『ORACLE』 内置约束(11g)
查看>>
Vue--学习过程中遇到的坑
查看>>
组件:slot插槽
查看>>
.net压缩图片质量(附demo)
查看>>
equals和==的区别
查看>>
Android6.0指纹识别开发
查看>>
java反射机制剖析(二)— Class Loader
查看>>
走进C++程序世界------异常处理
查看>>
通过用户模型,对数据库进行增删改查操作。
查看>>
去除数组中重复的元素
查看>>
Nginx配置文件nginx.conf中文详解(转)
查看>>
POJ 1988 Cube Stacking
查看>>
POJ 1308 Is It A Tree?(并查集)
查看>>
N进制到M进制的转换问题
查看>>
Android------三种监听OnTouchListener、OnLongClickListener同时实现即其中返回值true或者false的含义...
查看>>
MATLAB实现多元线性回归预测
查看>>