ホームページ > に質問 > 本文
麻烦问下各位大神
如何让Python在执行os.system(cmd)是不弹窗执行,让他在后台静默执行,有没有这样的方法。谢谢
示例代码:
#!/usr/bin/env python # -*- coding:utf-8 -*- import os cmd = 'ping 127.0.0.1' os.system(cmd)
ringa_lee2017-04-18 09:47:33
サブプロセスの run 関数を使用します