python cmd窗口命令提示窗口关闭方法,pythoncmd,import osos.
python cmd窗口命令提示窗口关闭方法,pythoncmd,import osos.
import osos.system('firefox.exe')
我把上面这段python 代码 编译成了exe ,启动firefox后,中间那个cmd.exe 会启动着,有什么办法隐藏这个cmd 窗口?
testx1=subprocess.Popen(r"C:UserscoolVideosthunder_shortcut.lnk",shell=True)
time.sleep(1)#等待使子进程打开
testx1.kill()#关闭cmd窗口
不使用 cmd.exe 就是了。
使用subprocess.Popen并且不要指定shell=True。
编橙之家文章,
相关内容
- python web缓存数据更新判断如何实现,pythonweb,问题情景
- python tornado mongo驱动应该如何选择,tornadomongo,背景我用
- pyton celery工作流的问题,pytoncelery工作流,celery中,我做这
- 理论方面Python可以编译小Python内核数量是多少,python内
- Python禁用输出缓冲除-u外的其它方法是什么?,python-u,
- Python scrapy ImagesPipeline图片下载源码纠错,,运行环境操
- 有让IDE可识别Python函数参数类型的方法吗,idepython,Py
- Python Flask-SQLAlchemy报sqlalchemy.exc.NoForeignKeysError是什么,
- django添加后台运行进程具体位置在哪里,django具体位置
- Python ORM关于Peewee定义models创建表问题,ormpeewee,比如c
评论关闭