How to throw error and exit with a custom message in python

后端 未结 4 543
时光取名叫无心
时光取名叫无心 2021-02-03 16:55

I\'ve seen people suggesting sys.exit() in Python. My question is that, is there any other way to exit the execution of current script, I mean termination, with an error.

<
4条回答
  •  梦谈多话
    2021-02-03 17:14

    Calling sys.exit with a string will work. The docs mention this use explicitly:

    In particular, sys.exit("some error message") is a quick way to exit a program when an error occurs.

提交回复
热议问题