python用requests獲取網(wǎng)頁(yè)源代碼為什么中文顯示錯(cuò)誤?
Python3的話不需要自己decode
resp = requests.get(url)
如果resp.text亂碼的話,這樣:
resp.encoding = resp.apparent_encoding
再
print(resp.text)
可以參考我寫過(guò)的:https://www.toutiao.com/i6496773720189698573/
python用requests獲取網(wǎng)頁(yè)源代碼為什么中文顯示錯(cuò)誤?
Python3的話不需要自己decode
resp = requests.get(url)
如果resp.text亂碼的話,這樣:
resp.encoding = resp.apparent_encoding
再
print(resp.text)
可以參考我寫過(guò)的:https://www.toutiao.com/i6496773720189698573/