在通过os.system(PATH)时由于c盘中的Program Files之间带有空格,从而导致在识别时会识别到Program时停止从而产生报错
例如:
os.system('C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe')
通过网上查找原因,大部分都是说加上双引号就行了
我以为是:"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"
但是结果还是不行,运行结果都是报错的。
通过对大佬转载的学习
[https://blog.csdn.net/ailsa0503/article/details/102252393?fromshare=blogdetail&sharetype=blogdetail&sharerId=102252393&sharerefer=PC&sharesource=m0_51583843&sharefrom=from_link]
我发现了真正的解决方法,将双引号套在单引号里面
即:
os.system('"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"')
os.system(r'"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"')
两种方法都是可行的
标签:Files,x86,system,Application,Program,报错,os From: https://blog.csdn.net/m0_51583843/article/details/142662748