我试图调试此程序,但我不知道错误所指的是什么。当我运行我的代码时,我收到此错误。 enter image description here
这是我可以参考的代码:
import urllib
fh=urllib.urlopen("http://www.py4inf.com/code/romeo.txt")
for line in fh:
print line.strip()
任何帮助都将被证明
答案 0 :(得分:0)
错误是在我的文件夹中我命名了一个文件“random.py”并在此文件中使用了“import random”。所以我更改了文件的名称并重新运行了我的代码。它工作正常。我这是一个愚蠢的错误。