gpt4 book ai didi

python - 将 writerow 与数字一起使用

转载 作者:行者123 更新时间:2023-11-30 23:37:03 25 4
gpt4 key购买 nike

我正在开发的函数,应该在每次调用时添加新的一行字符串和数字分隔符。
我将一个字符串和一个数字列表作为函数的参数传递。
目前,当函数调用时,它仅将参数写入如下:

[1.0, 2.0, 3.0]

但是,我希望函数编写如下所示分隔的代码:

1.0     2.0     3.0

看起来,我不太理解 writerow 函数。所以我的问题是,如何分隔传递给 writerow 的数字列表?

    # writes the results to a csv file
# each row contains a string and three numbers
def write_to_file(file_name, n_t_argument):
with open(file_name + '.txt', 'a', newline='') as outputfile:
wrtr = csv.writer(outputfile, dialect = 'excel-tab')
text_input = [ n_t_argument ]
wrtr.writerow(text_input)

write_to_file('output', [1.0, 2.0, 3.0])

最佳答案

您将数字放入一个嵌套列表中,即列表中的列表。无需这样做:

def write_to_file(file_name, n_t_argument):
with open(file_name + '.txt', 'a', newline='') as outputfile:
wrtr = csv.writer(outputfile, dialect = 'excel-tab')
wrtr.writerow(n_t_argument)

关于python - 将 writerow 与数字一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15937052/

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