gb2312--->utf-8
import re
import requests
url = 'https://www.shicimingju.com/chaxun/list/3075417.html'
response = requests.get(url)
response.encoding = 'utf-8'
webpage = response.text
titles = re.findall(r'<h1 id="zs_title">(.*?)</h1>', webpage, re.DOTALL)
print(titles)
body = re.findall(r'<div class="item_content" id="zs_content">(.*?)</div>', webpage, re.DOTALL)
print(body)