-1
我創建了一個調用json url並顯示數據的小型python腳本。 一個從網站JSON輸出領域的是日期,所以我做了打印[「日期」],這將返回2015-12-05T00:00:00如何將結果日期輸出轉換爲星期幾
import urllib, json
url = "http://buienradar.nl/Json/GetDailyForecast?geolocationid=2745340"
response = urllib.urlopen(url)
data = json.loads(response.read())
do1 = data['days'][0]
print do1['date']
print "windsnelheid", do1['windspeed']
print "Gevoelstemperatuur",do1['temperature']
print "Minimale temperatuur",do1['mintemperature']
print "Maximale temperatuur",do1['maxtemperature']
print '\n'
現在在打印DO1 [「日期」 ]我收到2015-12-02T00:00:00,並且我希望今天有。有人可以幫助我嗎?
謝謝