Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

C++からpython3スクリプトをコールする

実際のところ

#include <cstdlib>

int main() {
    // "helloworld.py" Pythonスクリプトを実行
    int returnCode = system("python3 helloworld.py");

    if (returnCode != 0) {
        // エラー処理
    }

    return 0;
}