win10 批次处理文件启动 python 隐藏命令窗口
创建文本文档,并写入如下类容@echo offcall activate qtD:cd D:\python_project\PyQtTeststart python xx.py将文本文件的 txt 后缀改为 bat在python代码的开头加入以下内容可以隐藏运行时的命令窗口import ctypeswhnd = ctypes.windll.kernel32.GetConsoleWindow()if
·
- 创建文本文档,并写入如下类容
@echo off
call activate qt
D:
cd D:\python_project\PyQtTest
start python xx.py
- 将文本文件的 txt 后缀改为 bat
- 在python代码的开头加入以下内容可以隐藏运行时的命令窗口
import ctypes
whnd = ctypes.windll.kernel32.GetConsoleWindow()
if whnd != 0:
ctypes.windll.user32.ShowWindow(whnd, 0)
ctypes.windll.kernel32.CloseHandle(whnd)
更多推荐
已为社区贡献2条内容
所有评论(0)