以下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'}]}]
你進去看了看,例如,[ 'json'](HTTP S://docs.python.org/2/library/json.html)? – jonrsharpe