2015-01-04 179 views
0

以下Json是通過查詢collection.find()方法從Mongodb獲得的。如何將此Json轉換爲Python中的Dictionary?我想將BMW作爲鑰匙和Series 3作爲我的字典中的價值。將Json轉換爲Python中的字典

的Python:

content = list(collection.find({"_id": "sample_abc"}, {"Car":1, "_id":0})) 
print (content) 

控制檯:

[{'Car': [{'BMW': 'series 3'}, {'Audi': 'A4'}]}] 
+2

你進去看了看,例如,[ 'json'](HTTP S://docs.python.org/2/library/json.html)? – jonrsharpe

回答

1

content[0]['Car'][0]可能{'BMW': 'series 3'}

+0

你太棒了 – Taewan

4

這將做到這一點:

import json 
q = json.loads(content)