题解 | #验证登录名与密码#
验证登录名与密码
https://www.nowcoder.com/practice/f3517fb21fd34d3880bd41454ca7209f
user=input()
password=input()
ff={'admis':'Nowcoder666'}
if user in ff and password == ff[user]:
print("Welcome!")
else:
print("user id or password is not correct!")
password=input()
ff={'admis':'Nowcoder666'}
if user in ff and password == ff[user]:
print("Welcome!")
else:
print("user id or password is not correct!")

