2012-10-19 75 views
-1

我對Python很陌生。我有這樣的JSON響應:如何用Python處理JSON?

{ 
    "Code" : "Success", 
    "LastUpdated" : "2012-10-19T08:52:10Z", 
} 

我需要得到的Code的價值,這是Success。我如何在Python中做到這一點?

回答

3
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。