这个程序好像有问题啊
本帖最后由 MMM啊 于 2019-7-18 10:48 编辑use_data = {}
def new_user():
prompt = '请输入用户名: '
while True:
name = input(prompt)
if name in use_data:
print('此用户名已经被占用,请重新输入: ')
continue
else:
break
passwd = input('请输入密码: ')
use_data = passwd
print('注册成功,赶紧试试吧!')
def old_user():
prompt = '请输入用户名: '
while True:
name = input(prompt)
if name not in use_data:
print('此用户名已经被占用,请重新输入: ')
continue
else:
break
passwd = input('请输入密码: ')
pwd = use_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()
这里面whileTrue这一模块,chose = False 有什么作用呢?看不懂诶
while True:
# chosen = False
# while not chosen:
# choice = input(prompt)
# if choice not in 'NnEeQq':
# print('您输入的指令代码错误,请重新输入: ')
# else:
# chosen = True
choice = input(prompt)
if choice not in 'NnEeQq':
print('您输入的指令代码错误,请重新输入: ')
else:
if choice == 'q' or choice == 'Q':
break
if choice == 'n' or choice == 'N':
new_user()
if choice == 'E' or choice == 'e':
old_user()
这样也可以运行啊,结果是一样的 本帖最后由 jackz007 于 2019-7-18 11:14 编辑
楼主试试这个
def new_user():
global use_data
prompt = '请输入用户名: '
while True:
print("")
name = input(prompt)
if len(name) > 0:
if name in use_data:
print('此用户名已经被占用,请重新输入: ')
continue
else:
break
else:
break
if len(name) > 0:
passwd = input('请输入密码: ')
use_data = passwd
print('注册成功,赶紧试试吧!')
def old_user():
global use_data
if len(use_data) > 0:
prompt = '请输入用户名: '
while True:
print("")
name = input(prompt)
if len(name) > 0:
if name in use_data:
passwd = input('请输入密码: ')
pwd = use_data . get(name)
if passwd == pwd:
print('欢迎进入XXOO系统,请点击右上角的 x 结束程序!')
break
else:
print('密码错误!')
else:
print('抱歉:用户名不存在,请重新输入!')
else:
break
else:
print("")
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()
use_data = {}
showmenu() jackz007 发表于 2019-7-18 10:58
楼主试试这个
思路你这个和小甲鱼的不差很多呢,有些微改动,我自己的也可以运行,但是我只是想知道我问的那部分的含义 本帖最后由 jackz007 于 2019-7-18 16:57 编辑
MMM啊 发表于 2019-7-18 14:38
思路你这个和小甲鱼的不差很多呢,有些微改动,我自己的也可以运行,但是我只是想知道我问的那部分的含义
请问楼主,你要的效果就是 -- 可以运行,真的仅此而已?
看出你的关键错误了吗?在函数 new_user() 中,use_data 必须是一个全局变量! print('学习作业')
temp = input("不妨猜一下小甲鱼现在心里想的那个数字:")
if temp == 8:
print("卧槽。你是小甲鱼心里的蛔虫么?!")
print("猜中也没有奖励")
else:
print("猜错啦,小甲鱼现在心里想的是8!")
print("游戏结束,不玩啦")
各位大佬,程序改成这样可以么,为什么这样只能执行else里面的语句,谢谢啦 sunyuning 发表于 2019-7-18 15:43
print('学习作业')
temp = input("不妨猜一下小甲鱼现在心里想的那个数字:")
if temp == 8:
怎么还会跑到我的帖子呢,兄弟! jackz007 发表于 2019-7-18 15:36
请问楼主,你要的效果就是 -- 可以运行,真的仅此而已?
看出你的关键错误了吗?在函 ...
大哥,你再看看我的use——data,不是全局变量吗?它本来就在函数之外好吗? MMM啊 发表于 2019-7-18 16:58
怎么还会跑到我的帖子呢,兄弟!
抱歉抱歉,不好意思 jackz007 发表于 2019-7-18 15:36
请问楼主,你要的效果就是 -- 可以运行,真的仅此而已?
看出你的关键错误了吗?在函 ...
你给我的代码中,你说的那个全局变量在函数中,所以要想使全局变量就要声明加上global,而我的本来就是在函数外边的,我和小甲鱼的代码不一样的地方在于我的问题那,不是我的运行不出来,是不理解他的那一段代码,您好像说跑偏了
页:
[1]