Python : 爬虫代码01--下载百度首页信息

import requests

data = requests.get(‘www.baidu.com’)
data.encoding=‘utf-8’

print(data.text)

你可能感兴趣的:(Python)