在使用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—“)
以上就是Python跳过异常代码继续执行的方法了。