我编写代码视图html.But它的结果为None。
# coding: UTF-8
import urllib
class View_html:
def __init__(self):
url = "http://www.yahoo.com/"
self.data = urllib.urlopen(url)
def html(self):
self.data.read()
if __name__=="__main__":
a = View_html()
print a.html()
结果
None
如何更改此代码?
答案 0 :(得分:2)
您忘记了return
关键字:
def html(self):
return self.data.read()