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.
シェル スクリプトの例を次に示します。
python command_name.py --shell positional_arg1 positional_arg2 --option optional_arg1 --True_flag
Pythonスクリプトからこれを呼び出せるようにしたいので、スクリプトをループして、ループごとに異なるパラメーターを変更できます。
import subprocess p = subprocess.Popen(["python", "--shell", "positional_arg1", "positional_arg2", "--option", "optional_arg1", "--True_flag"], shell=True, stdout=subprocess.PIPE) out, err = p.communicate()