我正在处理的函数,应该在每次调用时添加一行新的字符串和数字分隔 我传递一个字符串和一个数字列表作为函数的参数 目前,当函数调用时,它只会将参数写成如下:
[1.0, 2.0, 3.0]
但是,我希望函数将代码编写为如下所示的分隔符:
1.0 2.0 3.0
看起来,我没有很好地理解作家功能。所以我的问题是,如何划分传递给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])
答案 0 :(得分:3)
您将数字放在嵌套列表中,列表中的列表。无需这样做:
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)