任意:(1)(2)
(1) response.body.encoding = response.body.apparent_encoding
(2) response.encoding = response.apparent_encoding
乱码1
html = requests.get(url,headers=headers)
html.encoding = 'utf8'
html = html.text
print(html)
乱码2
response.content.decode('gbk',errors='ignore')
乱码3
content.decode('unicode_escape')
"u8bf7u6c42u6210u529f"



