第一天作业
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一天作业相关的知识,希望对你有一定的参考价值。
根据老男人需求,需要编写登录接口
- 输入用户名密码
- 认证成功以后显示欢迎信息
- 输错三次以后锁定
name = ‘Allen‘
password = 123
i = 0
while i <3
username = input (‘your username:‘)
pwd = int(input(‘your password:‘))
if username == name and password == pwd:
print (‘welcome!!!‘)
break
else:
print(‘wrong username or password,please try again!!!‘)
i += 1
else:
print (‘lock‘)
需要补充:账号密码文件与锁定文件,有待完善
以上是关于第一天作业的主要内容,如果未能解决你的问题,请参考以下文章