python爬虫出现乱码问题

from requests.packages import urllib3
urllib3.disable_warnings()
BASE_URL = 'https://www.xigushi.com/'
url=BASE_URL
response = requests.get(url,verify=False)
response.encoding = response.apparent_encoding
print(response.text)
#print(response.text.encode(response.encoding).decode('utf-8'))

你可能感兴趣的:(python,爬虫,开发语言)