PyCharm: Process finished with exit code 0

前端 未结 9 1929
感情败类
感情败类 2021-02-13 16:51

I am new to PyCharm and I have \'Process finished with exit code 0\' instead of getting (683, 11) as a result (please see attachment), could you guys help me out please? Much ap

9条回答
  •  臣服心动
    2021-02-13 17:36

    I would recommend you to read up onexit codes.

    exit 0 means no error.

    exit 1 means there is some error in your code.

    This is not pyCharm or python specific. This is a very common practice in most of the programming languages. Where exit 0 means the successful execution of the program and a non zero exit code indicates an error.

提交回复
热议问题