「Python」exitでプログラムを終了するサンプル

環境

PyCharm 2021.3
Python 3.9.7

構文
if 条件式:
sys.exit()
Pythonでプログラムを終了するには「exit」を使います。
使用例

import sys

def funA(nn):
    if nn > 12:
        #プログラムを終了
        sys.exit()
    else:
        return nn + 2

print(funA(2))
print(funA(5))
print(funA(13))

実行結果
4
7

Python

Posted by arkgame