Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个程序,如果我可以在发生某些事情时结束程序,那么编写起来会简单得多。但是,每当我使用 sys.exit() 时,都会给出一条错误消息,并且我想要一种不显示消息或任何内容的退出方式。我只想要一个干净的出口。如果您知道我可以为此使用的任何东西,请告诉我。
看看这个:这里(看os._exit)
os._exit
Sys.exit(0) 表示“一切都很好”,但如果您有错误,您仍然应该使用 1 退出。