Python 运行时隐藏窗口

  1. Python 运行时隐藏窗口
  2. 使用 bat 隐藏窗口

Python 运行时隐藏窗口

https://blog.csdn.net/qcyfred/article/details/77529016

import ctypes

whnd = ctypes.windll.kernel32.GetConsoleWindow()
if whnd != 0:
    ctypes.windll.user32.ShowWindow(whnd, 0)
    ctypes.windll.kernel32.CloseHandle(whnd)

使用 bat 隐藏窗口

@echo off
if "%1"=="h" goto begin
start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
cd F:\python
F:
python test.py

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 bin07280@qq.com

文章标题:Python 运行时隐藏窗口

文章字数:86

本文作者:Bin

发布时间:2018-09-16, 16:06:22

最后更新:2019-08-06, 00:07:35

原始链接:http://coolview.github.io/2018/09/16/Python/Python%20%E8%BF%90%E8%A1%8C%E6%97%B6%E9%9A%90%E8%97%8F%E7%AA%97%E5%8F%A3/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。

目录