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 で外部コマンドを呼び出す
Python で SVG ファイルを PDF に変換しようとしています。これにはInkscapeを使用したいと思います。Python で Inkscape を呼び出すにはどうすればよいですか?
プロセスと通信する必要がまったくない場合は、これで問題ありません。
import subprocess p=subprocess.call(['program','arg1','arg2','arg3', ...])