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

Python3.6中的简单抓取百度网页源代码

程序员文章站 2023-11-22 23:53:34
python3.6中的简单抓取百度网页源代码 import urllib.request url=’’ def gethtml(url): page...

python3.6中的简单抓取百度网页源代码

import urllib.request
url=’’
def gethtml(url):
page=urllib.request.urlopen(url)
html=page.read().decode(encoding=’utf-8’,errors=’strict’)
return html
print(gethtml(url))