utf-8 当网站使用了br压缩的话,他会告诉我们的,就是‘Content-Encoding’的值。 重点是 key = 'Content-Encoding' if(key in response.headers and response.headers['Content-Encoding'] == 'br'): data = brotli.decompress(response.content) data1 = data.decode('utf-8') print(data1) 好的 这...