Python爬虫代码示例
2020-02-22 本文已影响0人
网络好无聊
三行代码实现:
import urllib.request #导入网络请求模块
response = urllib.request.urlopen(‘http://www.baidu.com/’) #实现网络请求
print(response.read().decode(‘utf-8’))
三行代码实现:
import urllib.request #导入网络请求模块
response = urllib.request.urlopen(‘http://www.baidu.com/’) #实现网络请求
print(response.read().decode(‘utf-8’))