解决乱码问题content.decode(jbk)_xing2516_新浪博客

第1种方式:content.decode('gbk')
url = 'http://pic.netbian.com'
#res=requests.get(url=url)
#解决乱码问题content.decode('jbk')
res = requests.get(url=url).content.decode('gbk')
#print(res.text) 加了 gbk后,就要去掉text
#print(res)
#在页面中提取
第2种方式:直接在页面中加入代码#coding=utf-8
 
   
#coding=utf-8
##自动化过程记录
第3种,直接在pycharm页面,调整,如下图





你可能感兴趣的:(乱码,python,css,js,html)