标签:小练习 strip span 练习 username 存在 items info ems
user = {‘whx‘:‘whx‘,‘123‘:‘123‘,‘qwe‘:‘qwe‘}
1.验证username,pssd存在于字典中
方法一:
username = input("账号:").strip()
pssd = input("密码:").strip() if username in line:
if user[username] == pssd: print("成功")
方法二:
username = input("账号:").strip() passwd = input("密码:").strip() for info,passwd in user.items(): if info == usename and passwd == pwd: print("成功!")
标签:小练习 strip span 练习 username 存在 items info ems
原文地址:https://www.cnblogs.com/ymany/p/8794380.html