Python:如何将多个列表写入一个文本文件?

时间:2018-12-07 09:32:29

标签: python python-3.x list python-3.4

我正在编写一个简单的硬币计数程序。程序每次运行时,文件都应更新。但是文件不会更改。 当前代码:

NewList = (str(volunteer1),str(volunteer2),str(volunteer3),str(volunteer4),str(volunteer5),str(volunteer6))
    CoinFile = open("CoinCount.txt", "w")
    CoinFile.write('\n'.join(map(lambda x:str(x),NewList)))
    CoinFile.close()

0 个答案:

没有答案