gpt4 book ai didi

Python:将元组列表写入文件

转载 作者:IT老高 更新时间:2023-10-28 22:16:36 27 4
gpt4 key购买 nike

我怎样才能写出以下列表:

[(8, 'rfa'), (8, 'acc-raid'), (7, 'rapidbase'), (7, 'rcts'), (7, 'tve-announce'), (5, 'mysql-im'), (5, 'telnetcpcd'), (5, 'etftp'), (5, 'http-alt')]

到一个包含两列 (8 rfa) 和许多行的文本文件,所以我有这样的东西:

8 rfa
8 acc-raid
7 rapidbase
7 rcts
7 tve-announce
5 mysql-im
5 telnetcpcd

最佳答案

with open('daemons.txt', 'w') as fp:
fp.write('\n'.join('%s %s' % x for x in mylist))

如果要使用 str.format(),请将第二行替换为:

    fp.write('\n'.join('{} {}'.format(x[0],x[1]) for x in mylist))

关于Python:将元组列表写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3820312/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com