import urllib.request as req import json with req.urlopen(網址) as res: page_data = json.load(res) # 以JSON 格式,讀取「網站伺服器的回應」
確定! 回上一頁