我在执行以下行时遇到错误:
print urllib.urlopen('http://'+dns+'/password?passwd='+PASSWORD).read
错误:
IOError: ('http protocol error', 0, 'got a bad status line', None)
但是,它与webbrowser.open_new
答案 0 :(得分:0)
.read
只引用方法名称。尝试通过添加paranthesis来调用它:
.read()