首页 > 编程语言 > 详细

2018.09.19python作业

时间:2018-09-20 00:29:00      阅读:201      评论:0      收藏:0      [点我收藏+]
需求:在一个数据文件中,让用户输入信息
with open(r‘bd.py‘,mode=‘rt‘,encoding=‘utf-8‘) as f:
count=0
while count<=3:
name=input("please input account: ")
password=input("please input password: ")
for msg in f:

if name == msg.strip(‘\n‘).split(‘:‘)[0] and password == msg.strip(‘\n‘).split(‘:‘)[1]:
print("login successful")
break
else:
print("sb")
count+=1

2018.09.19python作业

原文:https://www.cnblogs.com/hello-yuanjing/p/9678344.html

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