當前位置:成語大全網 - 新華字典 - python dict字典怎麽弄在壹個字典中

python dict字典怎麽弄在壹個字典中

就是比如兩條記錄,都提取出來,然後放在壹個.json文件中,中間是逗號 -- 這是由字典組成的列表

$?python

Python?2.7.3?(default,?Feb?27?2014,?20:00:17)?

[GCC?4.6.3]?on?linux2

Type?"help",?"copyright",?"credits"?or?"license"?for?more?information.

>>>?import?json

>>>?dct1?=?{'aa':?123,?'bb':?111}

>>>?dct2?=?{'aa':?222,?'bb':?333}

>>>?json.dumps([dct1,?dct2])

'[{"aa":?123,?"bb":?111},?{"aa":?222,?"bb":?333}]'

>>>