python 读取网页
import urllib.request
response = urllib.request.urlopen(\'http://www.baidu.com/\')
html = response.read()
z_data=html.decode(\'UTF-8\')
print(z_data)
import urllib.request
response = urllib.request.urlopen(\'http://www.baidu.com/\')
html = response.read()
z_data=html.decode(\'UTF-8\')
print(z_data)