爬虫代码开始:

# 爬虫代码开始:
import requests
from bs4 import BeautifulSoup
response = requests.get("https://www.cnblogs.com/xiaoyuanqujing/articles/11721975.html")
print(response.text)
原文地址:https://www.cnblogs.com/zhang-da/p/11900531.html