How do I get rid of the ' the program is still running are you sure you want to kill it' warning on python?
1 2 3 4 5 6 7 8 9 10 11 12 | print ('Password Request Initiative') password = 'abcd' user_input = input('Please Enter Password: ') if user_input != password: print("Haha. Nope") quit() elif user_input == password: print ("User is now logged in...") enter code here |
这就是代码,但当我运行它并键入错误的密码时,它会显示此警告:我希望它运行时不显示此消息,因此它会立即关闭。
为了避免从空闲状态运行时的消息,不要在程序中使用
1 2 3 4 5 6 7 | C:\Users\Terry>python Python 3.5.1 ... [MSC v.1900 64 bit (AMD64)] on win32 Type"help","copyright","credits" or"license" for more information. >>> ^D SyntaxError: invalid syntax >>> ^Z C:\Users\Terry>python |
在Unix上,
在空闲状态下,shell中的
要退出不是文件底部的程序,请使用
正如缩略语的扩展所说,idle是一个开发环境。IDLE的一个特性是,在IDLE中测试程序不会杀死IDLE本身,至少在没有警告的情况下不会。