一、python 打开浏览器的方法:
1. startfile方法(打开指定浏览器)
import os os.startfile("C:Program Filesinternet exploreriexplore.exe")
2. system方法
打开指定浏览器:
import os os.system('"C:Program Filesinternet exploreriexplore.exe"')
通过指定浏览器打开指定的网址:
import os os.system('"C:Program Filesinternet exploreriexplore.exe" http://www.baidu.com')
3. 更好地解决方案WEBBROWER
通过默认浏览器打开:
import webbrowser webbrowser.open("http://www.baidu.com")
通过指定浏览器打开指定的网址:
import webbrowser IEPath = "C:Program Filesinternet exploreriexplore.exe" webbrowser.register('IE', None, webbrowser.BackgroundBrowser(IEPath)) webbrowser.get('IE').open('http://www.baidu.com', new=1,autoraise=True) # 或者 webbrowser.open_new_tab('http://www.baidu.com')
参考:python---webbrowser模块的使用,用非系统默认浏览器打开
参考:python爬虫(20)使用真实浏览器打开网页的两种方法
二、python 打开文件的方法:
1. startfile方法
>>> import os >>> os.startfile(r"D:MODISPRO操作指南.txt") >>> os.startfile(r"D:MODISPRO操作指南.docx")
2. system方法
>>> import os >>> os.system(r"D:MODISPRO操作指南.txt") >>> os.system(r"D:MODISPRO操作指南.docx")