sys.exit() 导致意外错误,导致 "repl process to die unexpectedly"
sys.exit() causes an unexpected error causing the "repl process to die unexpectedly"
我正在使用 repl.it 编写 login/registration 屏幕代码。 Python 中的代码如下:
while True:
print("""
============MAIN MENU================
*Welcome*
1. Register
2. Login
3. Quit
""")
x=input("Enter choice:")
if int(x)==1:
register()
elif int(x)==2:
login()
elif int(x)==3:
print("Goodbye then!")
sys.exit()
它工作正常,但在按选项 3 时,它会在屏幕上打印再见,但随后显示此错误:
repl process died unexpectedly:
当我过去使用 sys.exit 时,它只是求助于一个简单的退出(光标闪烁)并且没有错误消息。
我做错了什么,出于教学目的,这里的最佳做法是什么?
我会建议您将代码更改为:
while True:
print("""
============MAIN MENU================
*Welcome*
1. Register
2. Login
3. Quit
""")
x = int(input("Enter choice: "))
if x == 1:
register()
elif x == 2:
login()
elif x == 3:
print("Goodbye then!")
break
不建议在迭代中使用 sys.exit()
方法,而是在循环外 break
并执行所有必要的操作。至于它为什么引发错误,sys.exit()
使迭代操作崩溃并终止程序。因此,首先 break
退出循环始终是一个好习惯。
由于 sys.exit()
函数,您收到的错误消息是
repl process died unexpectedly:
我正在使用 repl.it 编写 login/registration 屏幕代码。 Python 中的代码如下:
while True:
print("""
============MAIN MENU================
*Welcome*
1. Register
2. Login
3. Quit
""")
x=input("Enter choice:")
if int(x)==1:
register()
elif int(x)==2:
login()
elif int(x)==3:
print("Goodbye then!")
sys.exit()
它工作正常,但在按选项 3 时,它会在屏幕上打印再见,但随后显示此错误:
repl process died unexpectedly:
当我过去使用 sys.exit 时,它只是求助于一个简单的退出(光标闪烁)并且没有错误消息。
我做错了什么,出于教学目的,这里的最佳做法是什么?
我会建议您将代码更改为:
while True:
print("""
============MAIN MENU================
*Welcome*
1. Register
2. Login
3. Quit
""")
x = int(input("Enter choice: "))
if x == 1:
register()
elif x == 2:
login()
elif x == 3:
print("Goodbye then!")
break
不建议在迭代中使用 sys.exit()
方法,而是在循环外 break
并执行所有必要的操作。至于它为什么引发错误,sys.exit()
使迭代操作崩溃并终止程序。因此,首先 break
退出循环始终是一个好习惯。
由于 sys.exit()
函数,您收到的错误消息是
repl process died unexpectedly: