gpt4 book ai didi

python - python中的webbrowser.open()

转载 作者:IT老高 更新时间:2023-10-28 22:03:00 25 4
gpt4 key购买 nike

我有一个 python 文件 html_gen.py 在同一目录中写了一个新的 html 文件 index.html,并想写完后打开index.html

所以我写了

import webbrowser
webbrowser.open("index.html");

但是执行 .py 文件后什么也没有发生。如果我改为输入代码

webbrowser.open("http://www.google.com")

Safari 将在执行代码时打开谷歌首页。

不知如何打开本地的index.html文件?

最佳答案

尝试在 URL 的开头指定“file://”。另外,使用文件的绝对路径:

import webbrowser, os
webbrowser.open('file://' + os.path.realpath(filename))

关于python - python中的webbrowser.open(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22004498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com