我只是 Python 的初学者。我创建了一个名为 as 的文件cc.py
并保存在以下路径中:
C:/Python33/cc.py
.
我正在尝试运行此文件,但没有任何反应。
在我正在输入的 python shell 中,Python cc.py
但我收到以下错误:
SyntaxError: invalid syntax
我尝试了另一种方法:
>>> execfile('cc.py');
Traceback (most recent call last):
File "<pyshell#8>", line 1, in <module>
execfile('cc.py');
NameError: name 'execfile' is not defined
该文件包含以下代码行:
import urllib
htmlfile = urllib.urlopen("http://google.com")
htmltext = htmlfile.read()
print htmltext
我应该如何运行这个文件?我完全糊涂了。有人可以帮我吗?