href = a_url['href'].lower()
title = a_url.get_text()
href 和title 是抓取的链接和文本,但是会带有特殊字符串,如何转义了?
这里如何用re模块来转义了?
带有特殊字符串可能是编码的问题,可以尝试用decode('utf-8')转码。