-1
我對Python很陌生。我有這樣的JSON響應:如何用Python處理JSON?
{
"Code" : "Success",
"LastUpdated" : "2012-10-19T08:52:10Z",
}
我需要得到的Code
的價值,這是Success
。我如何在Python中做到這一點?
我對Python很陌生。我有這樣的JSON響應:如何用Python處理JSON?
{
"Code" : "Success",
"LastUpdated" : "2012-10-19T08:52:10Z",
}
我需要得到的Code
的價值,這是Success
。我如何在Python中做到這一點?
import json
# ... you read here from the file
data = '''{
"Code" : "Success",
"LastUpdated" : "2012-10-19T08:52:10Z"
}'''
result = json.loads(data)
print result['Code']
小心格式!我在"LastUpdated" : "2012-10-19T08:52:10Z"
之後刪除了逗號,因爲這不是有效的json。
在documentation中搜索json
。你會發現the json module解釋,並舉例說明。