Python 程式設計入門
網路連線、公開資料串接
網路連線
載入模組
import urllib.request
下載特定網址資料
import urllib.request as request�with request.urlopen(網址) as response:� data=response.read()�print(data)
公開資料
適合的資料來源
台北市政府公開資料
確認資料格式
JSON、CSV、或其他格式
解讀 JSON 格式
使用內建的 json 模組