代码视图html结果无



我写代码查看html。但结果是没有。

# 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

如何更改此代码?

您忘记了return关键字:

def html(self):
    return self.data.read()

相关内容

  • 没有找到相关文章

最新更新