马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我的程序是:dict1 = {} # 函数内部存储的字典是否全局可以使用?
def Newbuilding():
amount=input('请输入用户名:')
while 1:
if amount not in dict1 : #检索是否存在(在整个范围内的键) 用key的方法
keys = input('请输入密码:')
dict1={amount:keys}
print('注册成功,赶紧试试登陆吧(*^_^*)!')
break
else:
amount=input('此用户名已经被使用,请重新输入:')
def Examination():
amount=input('请输入用户名:')
while 1:
if amount in dict1.keys():
keys= input('请输入密码:')
while 1:
if keys==dict1.get(amount):
print('欢迎进入系统,请点击右上角的X结束程序!')
break
else:
keys=input('密码错误,请重新输入')
break
else:
amount=input('用户名不存在,请重新输入')
while 1:
print('''|---新建用户:N/n---|
|---登陆账号:E/e---|
|---推出程序:Q/q---|''')
sign=input('请输入指令代码:')
if sign=='N'or'n':
Newbuilding()
elif sign=='E'or'e':
Examination()
答案的程序是:user_data = {}
def new_user():
prompt = '请输入用户名:'
while True:
name = input(prompt)
if name in user_data:
prompt = '此用户名已经被使用,请重新输入:'
continue
else:
break
passwd = input('请输入密码:')
user_data[name] = passwd
print('注册成功,赶紧试试登录吧^_^')
def old_user():
prompt = '请输入用户名:'
while True:
name = input(prompt)
if name not in user_data:
prompt = '您输入的用户名不存在,请重新输入:'
continue
else:
break
passwd = input('请输入密码:')
pwd = user_data.get(name)
if passwd == pwd:
print('欢迎进入XXOO系统,请点右上角的X结束程序!')
else:
print('密码错误!')
def showmenu():
prompt = '''
|--- 新建用户:N/n ---|
|--- 登录账号:E/e ---|
|--- 推出程序:Q/q ---|
|--- 请输入指令代码:'''
while True:
chosen = False
while not chosen:
choice = input(prompt)
if choice not in 'NnEeQq':
print('您输入的指令代码错误,请重新输入:')
else:
chosen = True
if choice == 'q' or choice == 'Q':
break
if choice == 'n' or choice == 'N':
new_user()
if choice == 'e' or choice == 'E':
old_user()
showmenu()
我的第七行,和答案的第八行 同样是检索 全局变量字典。。为什么我的就报错了
请忽略我的注释!
感谢亲爱的鱼油帮我解答。。多谢多谢
本帖最后由 jackz007 于 2021-1-25 17:18 编辑 def Newbuilding():
while 1:
amount=input('请输入用户名:') # 必须把此句放入循环
if amount not in dict1 : #检索是否存在(在整个范围内的键) 用key的方法
keys = input('请输入密码:')
dict1[amount] = keys
print('注册成功,赶紧试试登陆吧(*^_^*)!')
break
else:
amount=input('此用户名已经被使用,请重新输入:')
def Examination():
while 1:
amount = input('请输入用户名:') # 必须把此句放入循环
if amount in dict1.keys():
keys = input('请输入密码:')
if keys == dict1 . get(amount):
print('欢迎进入系统,请点击右上角的X结束程序!')
break
else:
keys = input('密码错误,请重新输入')
else:
amount=input('用户名不存在,请重新输入')
dict1 = {}
while 1:
print('''|---新建用户:N/n---|
|---登陆账号:E/e---|
|---推出程序:Q/q---|''')
sign = input('请输入指令代码:')
if sign in ('N','n'):
Newbuilding()
elif sign in ('E' , 'e'):
Examination()
elif sign in ('Q' , 'q'):
break
|