Python3 requests crawling web page garbled

1. When crawling a web page with python3, the web side shows that the code is utf-8, itself. When crawling, the code is also set to utf-8, but a print result is garbled in Chinese.

2.:
url = "http://wxqqyy.info/thread-922..."
headers = {


}
response = requests.get(url,headers=headers)
response.encoding = "utf-8"
print(response.text)
3..
4. I have been looking for a solution on the Internet for a long time, and I have been visiting the forum for a long time, but I still haven"t found a solution. There is really no way out. I hope you can help solve it. Thank you.

Feb.27,2021

import gzip
resp = requests.get(url)
html = gzip.decompress(resp.content).decode('u8')

response = requests.get ("http://wxqqyy.info/thread-9227343-1-1.html", headers= {" Accept-Encoding ":"})

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32c3d-2be53.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32c3d-2be53.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?