小弟我正在練習爬蟲
遇到了這個問題
https://imgur.com/a/q7Kop
網路上說是Python編碼無法映射奇怪的符號
可是我看了看原始碼,怎麼也看不出有奇怪符號
import json
from urllib.request import urlopen
with urlopen("https://pm25.lass-net.org/data/last-all-airbox.json") as url:
text = url.read().decode("utf8")
test = json.loads(text)
print(test)
附上我的code
請問要如何改才能順利輸出?