我有一本字典dic = {(1,2,3): 3, (2,3,4): 2, (3,4,8): 5} ,我希望它以指定格式保存在文本文件output.txt中
1 2 3 (3)
2 3 4 (2)
3 4 8 (5)
为此任务修改以下代码
dic = {(1,2,3): 3, (2,3,4): 2, (3,4,8): 5}
with open('output.txt', 'w') as file:
file.write(str(dic))
MM们
慕斯709654
相关分类