欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python爬取网页01

程序员文章站 2022-06-10 23:18:32
...
#! /usr/bin/python
import urllib

response =  urllib.urlopen('http://focus.tianya.cn/')
html = response.read()
html = html.decode('utf-8')
print(html)
相关标签: python