【求助】登陆代码变死循环了求大神指正
#实现注册和登陆功能,并储存用户信息,登陆三次失败将锁定账号#存储库
user_info={'Alex':123468,'Betty':233546}
lock_info=[]
#输入信息
choice=input('新用户:0/老用户:1\t')
username=input('请输入用户名:')
password=input('请输入密码:')
#计数器
count=0
#验证函数
def user_exist():#新用户注册,验证用户名是否存在
if username in user_info:
print('此用户名已存在,请重新注册')
else:
user_info.update({username:password})
print('欢迎新用户%s来到完美世界'%(username))
return
def user_lock():
if username in lock_info():
print('用户名已被锁定,请明天再试')
return
def user_not_exist():
if username not in user_info():
print('此用户不存在,请重新尝试')
#循环语句登陆三次
while count<3:
if choice=='0':
user_exist()
elif choice=='1':
user_not_exist()
萌新求助,要写一个注册登陆程序,老用户登陆,新用户注册并保存新用户信息,登陆超过三次锁定账户。不知道函数哪里出了问题一测试就死循环了,求大神看下代码哪里出了问题,多谢