爬虫数据特殊符号处理(记录+持续补充)

####1: \xa0

.replace(u'\xa0',' ')

####2: & (html 的空格)

# https://blog.csdn.net/weixin_43640594/article/details/122859029
import html
html.unescape(text)

你可能感兴趣的:(Python,#python3网络爬虫,爬虫)