0
我有一個從Web服務器獲取一些數據的問題,我想獲取json格式的溫度並將其解析爲一個整數。我在python中使用我的Raspberry Pi 3來嘗試這個。Raspberry pi閱讀json typeerror'instancemethod'對象沒有屬性'__getitem__'
代碼是迄今爲止:
import json, requests
url='http://stationdata.wunderground.com/cgi-bin/stationlookup?station=IWIEN30&units=metric&v=2.0&format=json'
r=requests.get(url)
result =r.json
temperature = result['stations']['IWIEN30']['temperature']
temperature = int(temperature)
當我嘗試執行此我得到:類型錯誤:「instancemethod」對象有沒有屬性「的getItem」
我不那麼有經驗與python和rasperry pi所以我想我只是一個愚蠢的錯誤 提前謝謝!