1. 登录作业:
写一个登录程序,登录成功之后,提示XXX欢迎登录,登录失败次数是3次,要校验一下输入为空的情况
1 for i in range(3): 2 username=input(‘username:‘).strip() 3 passwd=input(‘passwd:‘).strip() 4 if username and passwd: 5 if username==‘weixiaocui‘ and passwd==‘123456‘: 6 print(‘%s欢迎登录‘%username) 7 break 8 else: 9 print(‘账号/密码错误‘) 10 else: 11 print(‘账号/密码不能为空‘) 12 else: 13 print(‘错误失败次数太多!‘)
原文地址:https://www.cnblogs.com/wxcx/p/8111625.html
时间: 2024-11-05 18:38:14