小弟我正在练习爬虫
遇到了这个问题
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
请问要如何改才能顺利输出?