其他分享
首页 > 其他分享> > 字典,判断是否重复,

字典,判断是否重复,

作者:互联网

asd=[
    {'账号': '1231234567', '密码': 'qwer5678909'}
]
#放到asd列表里
while True:
    qw = dict.fromkeys(["账号", "密码"])
    zxc=input("账号:")
#必须是数字, if zxc.isdigit() and len(zxc)<=11: for i in asd: if zxc==i["账号"]: print("请重新输入,有重复账号") continue else: mko=input("密码") # 前是位必须是英文 if mko.isdigit()and mko[0:4].isalpha() and len(mko)<=11: qw["账号"]=zxc qw["密码"]=mko asd.append(qw) print("添加成功") break else: print("必须数字,不能超过11位") else: print("输入错误") zxc=input("y") if zxc=="y": break
print(asd)

 

标签:zxc,判断,账号,重复,密码,dict,asd,isdigit,字典
来源: https://www.cnblogs.com/xxh12/p/16053267.html