在python中执行url lib时出错

时间:2015-09-27 19:02:49

标签: python urllib

我在执行以下行时遇到错误:

print urllib.urlopen('http://'+dns+'/password?passwd='+PASSWORD).read

错误:

IOError: ('http protocol error', 0, 'got a bad status line', None)

但是,它与webbrowser.open_new

一起正常工作

1 个答案:

答案 0 :(得分:0)

.read只引用方法名称。尝试通过添加paranthesis来调用它:

.read()