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

第一次写作业。 一定写的不好,但我会努力改进。

时间:2017-10-28 13:01:02      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:print   txt   and   input   open   password   write   bre   努力   

f = open("username.txt","r")
y = f.read()
#print(y)
f.close()

p = open("password.txt","r")
p1 = p.read()
#print(p1)
p.close()



a = 0
while True:

c = open("cuo.txt","r")
c1 = c.read()
#print(c1)
c.close()

username = input("请输入用户名:")
password = input("请输入密码:")
if username == c1:
print("用户被锁定。。")
break

elif username == y and password == p1 :
print("输入正确")
break

elif a == 2 :
c = open("cuo.txt","w")
c.write(username)
c.close()

else:
print("输入错误-----")

a += 1

第一次写作业。 一定写的不好,但我会努力改进。

标签:print   txt   and   input   open   password   write   bre   努力   

原文地址:http://www.cnblogs.com/lygzhan/p/7746366.html

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