text = response.text.encode() #获取页面编码 code = chardet.detect(text) #code 的输出是这样的的一个字典{'confidence': 0.99, 'encoding': 'utf-8'} response.encoding = code.get("encoding") response_text = response.text