辞書の複雑で乱雑なリストから総現金および現金同等物の値を抽出しようとしています。構造の短縮版は以下の通りです。抽出重複したキー値のペアを持つ辞書の重複したリストからの値
私は試しました:maps、Dataframe.from_dict & .from_records。 REの使用を避けようとしています。
私は困惑。
[{u'Fields': [],
u'ReportDate': u'2 June 2016',
u'ReportID': u'BalanceSheet',
u'ReportName': u'Balance Sheet',
u'ReportTitles': [u'Balance Sheet',
u'Test Company',
u'As at 30 June 2016'],
u'ReportType': u'BalanceSheet',
u'Rows': [{u'Cells': [{u'Value': u''},
{u'Value': u'30 Jun 2016'},
{u'Value': u'30 Jun 2015'}],
u'RowType': u'Header'},
{u'RowType': u'Section', u'Rows': [], u'Title': u'Assets'},
{u'RowType': u'Section',
u'Rows': [{u'Cells': [{u'Attributes': [{u'Id': u'account',
u'Value': u'c0bxx922-cc31-4d53-b060-cbf23511`2533'}],
u'Value': u'Test Bank 1'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'c1b4xx22-cc31-4d53-b060-cb45282533'}],
u'Value': u'5555.20'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'c2b44922-cc31-4d53-b060-cbf4532582533'}],
u'Value': u'5555.20'}],
u'RowType': u'Row'},
{u'Cells': [{u'Attributes': [{u'Id': u'account',
u'Value': u'290c7c3c-a712-4ads6f-9a2f-3d5258aad5a9e'}],
u'Value': u'Test Bank 2'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'490c7c32-axxxdf6f-9a2f-3db682a3ad5a9e'}],
u'Value': u'55555.20'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'490xxc3c-a71-adsf6f-9a2f-3d3aad5a9e'}],
u'Value': u'55555.20'}],
u'RowType': u'Row'},
{u'Cells': [{u'Attributes': [{u'Id': u'account',
u'Value': u'c6d4da40-f0df1b0-8f7d-xx45b1405'}],
u'Value': u'Test Bank 3'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'c6d4da4fg-df-41b0-8f7d-54xx345b1405'}],
u'Value': u'5555.20'},
{u'Attributes': [{u'Id': u'account',
u'Value': u'c6d4dafgss-9-41b0-8f7d-60xx5b1405'}],
u'Value': u'5555.20'}],
u'RowType': u'Row'},
{u'Cells': [{u'Value': u'Total Cash and Cash Equivalents'},
{u'Value': u'5555555.20'},
{u'Value': u'5555555.20'}],
u'RowType': u'SummaryRow'}],
u'Title': u'Cash and Cash Equivalents'},
{u'RowType': u'Section',
なぜ 'json'を使わないのですか? – ZWiki
この出力は残念です。 –
キー値のペアについて重複はありますか? –