本文介绍了Python-解码('utf-8')问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对Python很陌生.请帮助我解决此问题.
I am very new to Python.Please help me fix this issue.
我正试图从下面的链接中获取收入:
I am trying to get the revenue from the link below :
我正在使用以下命令:
重新导入
导入urllib.request
import urllib.request
data = urllib.request.urlopen(url).read()
data=urllib.request.urlopen(url).read()
data1 = data.decode("utf-8")
data1=data.decode("utf-8")
问题:
推荐答案
对于请求可能更好:
import requests
url = "https://www.google.co.in/?gfe_r...."
req = requests.get(url)
req.encoding = "utf-8"
data = req.text
这篇关于Python-解码('utf-8')问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!