webbrowser.open() 创建一个新的文档文件而不是打开浏览器

webbrowser.open() creates a new Document file Instead opening browser

我试图通过 python 命令 webbrowser.open() 在网络浏览器中打开 link 但每次我执行此命令时,加上光标(对于 selection ) 出现并且我 select 保存在名为 "webbrowser".

的文件中的任何区域

我的 foo.py 文件的内容--

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

在 selecting 之后我得到了这个错误-

/foo.py: line 2: syntax error near unexpected token `"http://www.google.com"'

./foo.py: line 2:webbrowser.open("http://www.google.com"`);'

截图如下:

我的代码顶部缺少这一行“#!/usr/bin/python”。