gpt4 book ai didi

python - 如何将整数写入文件

转载 作者:太空狗 更新时间:2023-10-30 00:30:25 26 4
gpt4 key购买 nike

我要写

ranks[a], ranks[b], count

一个文件,每次换行

我正在使用:

file = open("matrix.txt", "w")
for (a, b), count in counts.iteritems():
file.write(ranks[a], ranks[b], count)

file.close()

但这不起作用并返回

TypeError: function takes exactly 1 argument (3 given)

最佳答案

如错误所述,file.write只需要一个参数。尝试:

file.write("%s %s %s" % (ranks[a], ranks[b], count))

关于python - 如何将整数写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8932488/

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