将字典的按字符串格式写入文本文件,删除中括号
Posted 派神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字典的按字符串格式写入文本文件,删除中括号相关的知识,希望对你有一定的参考价值。
a={‘user2‘: [‘234567‘,‘8000‘,‘10000‘], ‘user1‘: [‘123456‘,‘12000‘,‘15000‘]}
with open(‘shuru.txt‘,‘w‘) as f:
for key, value in a.items():
print value
a=‘,‘.join(value)#将列表的中括号去掉,以逗号链接的字符串
print a
f.write(‘%s,%s‘%(key,a))
f.write(‘\n‘) #换行写入
以上是关于将字典的按字符串格式写入文本文件,删除中括号的主要内容,如果未能解决你的问题,请参考以下文章