3
我在使用python從文件讀取json時遇到了問題。數據存儲在未排序的字典中。我想要將數據存儲在列表變量中以正確的順序。如何將json.loads作爲列表而不是Python中的字典
flookup = open('lookup.json')
self.tags = json.loads(flookup.read())
flookup.close()
self.tags包含沒有下令爲基礎的數據上lookup.json文件
{
"JournalTitle": "Journal Title",
"PubCode": "Pub Code",
"UniqueDocumentID": "Unique Document ID"
}
很難理解你在問什麼,但這可能有所幫助:http://stackoverflow.com/questions/6921699/can-i-get-json-to-load-into-an-ordereddict-in-python –