第二十篇:使用Python爬取百度首页页面数据

28 阅读1分钟

image.png

import requests  
res = requests.get('http://www.baidu.com')  
print((res.content))

image.png