我正在尝试将CSV文件导入为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',
}
基本上每个换行?
抱歉在移动应用上完成格式化