我尝试使用上面的代码从网站检索html代码
url = 'http://www.somesite.com'
obj = requests.get(url, timeout=60, verify=True, allow_redirects=True)
print(obj.encoding)
print(obj.text.encode('utf-8'))
但我得到的结果是一个奇怪的编码,如下面的文字
\ xb72 \ XC2 \ xacBD \ XC3 \ xb70 \ XC2 \ xacAN \ XC3 \ xb7n \ XC2 \ XAC〜AA \ XC3 \ xb7M1FX7q3K \ XC2 \ xacAD \ XC3 \ xb71414690200 \ XC2 \ xacAB \ XC3 \ xb73 \ XC2 \ xacCR \ XC3 \ xb73 \ XC2 \ xacAC \ XC3 \ xb73 \ XC
任何想法如何解码文本?