python菜鸟

版权声明:菜鸟老五 https://blog.csdn.net/qq_35695041/article/details/82148468
#coding=utf-8
import urllib

def getHtml(url):
    page = urllib.urlopen(url)
    html = page.read()
    return html

html = getHtml("")
# print var;
print html

猜你喜欢

转载自blog.csdn.net/qq_35695041/article/details/82148468