来自CSV格式的字典

时间:2015-10-05 22:58:18

标签: python-2.7 csv dictionary formatting code-formatting

我正在尝试将CS​​V文件导入为python中的字典,但设置了布局。

我的代码可以使用

CSV文件

key1, value1
Key2, value2

脚本

Import cvs
with open('test.csv', mode='r') as infile:

    with open('dict.py', mode='w') as outfile:
        mydict = {rows[0]:rows[1] for rows in reader}
        output.write(mydict)

所以我的输出看起来像

{'Key1': 'value1', 'Key2': 'value2'}

如何让它看起来像

{
'Key1': 'value1', 
'Key2': 'value2',
}

基本上每个换行?

抱歉在移动应用上完成格式化

0 个答案:

没有答案