python代码执行命令行跳过 "press any key to continue"(请键入任意值继续...)
2021/11/3 1:09:48
本文主要是介绍python代码执行命令行跳过 "press any key to continue"(请键入任意值继续...),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在使用python执行某些脚本的时候,遇到脚本中存在 "pause" 命令,会给出提示让键入任意值再继续;
这个时候,python程序会执行不下去,需要人为介入才行;
这种情况下,就需要跳过该提示,让程序自动继续:如下方式
以window平台为例:
bat脚本:
@echo off echo begin timeout /t 10 pause
python跳过代码:
import subprocess print("------") sp = subprocess.Popen("pause_demo.bat", stdin=subprocess.PIPE) sp.stdin.write(b"\r\n") # send the CR/LF for pause sp.stdin.close() # close so that it will proceed print("---END---")
赶快试一下
参考:batch file - How can I surpass "Press any key to continue ..." in python? - Stack Overflow
这篇关于python代码执行命令行跳过 "press any key to continue"(请键入任意值继续...)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01Python编程基础知识
- 2024-11-01Python编程基础
- 2024-10-31Python基础入门:理解变量与数据类型
- 2024-10-30Python股票自动化交易资料详解与实战指南
- 2024-10-30Python入行:新手必读的Python编程入门指南
- 2024-10-30Python入行:初学者必备的编程指南
- 2024-10-30Python编程入门指南
- 2024-10-30Python量化交易学习:新手入门指南
- 2024-10-30Python股票自动化交易实战入门教程
- 2024-10-29Python股票自动化交易教程:新手入门指南