1.系统里面有多个用户,用户的信息目前保存在列表中
user=[“root”,“westos”]
password=[“123”,“456”]
2.用户登录(判断用户登录是否正确)
代码:
caidan='''
1.进行登录
2.退出
'''
user=['root','westos']
password=['123','456']
print(caidan)
while True:
choice=int(input("操作数字为:"))
if choice==1:
cont=0
for i in range(3):
a=input("请输入用户名:")
if a in user:
b=input("请输入密码:")
while cont<2:
if b in password:
print("登录成功!")
exit()
else:
cont+=1
print("密码输入错误,请重新输入")
b=input("请输入密码:")
print("密码输入错误三次,您没有登录机会了!")
exit()
else:
print("没有此用户名,请重新输入")
print("用户名输入错误三次,您没有登录机会了!")
exit()
elif choice==2:
print("退出!")
exit()
else :
if choice!=1 or choice!=2:
print("请输入正确的操作数:")
continue
结果:
1.进行登录
2.退出
操作数字为:1
请输入用户名:wq
没有此用户名,请重新输入
请输入用户名:12
没有此用户名,请重新输入
请输入用户名:3
没有此用户名,请重新输入
用户名输入错误三次,您没有登录机会了!
***Repl Closed***
1.进行登录
2.退出
操作数字为:1
请输入用户名:root
请输入密码:123
登录成功!
***Repl Closed***
1.进行登录
2.退出
操作数字为:1
请输入用户名:westos
请输入密码:3r
密码输入错误,请重新输入
请输入密码:3
密码输入错误,请重新输入
请输入密码:134
密码输入错误三次,您没有登录机会了!
***Repl Closed***