我的 Python 脚本中有以下 while 循环
while 1:
functionToGetXandY
if x == z:
os.system("google-chrome --start-maximized " + x)
currentLink = latestLink
if y == z:
subprocess.call([vlc_path, "--fullscreen", z])
time.sleep(1)
每当通过脚本启动 Chrome 或 VLC 时,循环似乎都会停止 - 或者有时会等到打开的窗口关闭。我错过了什么?
注意:无限循环是故意的 - 脚本不断检查 XML 文件以执行命令(该部分有效)