简体   繁体   English

为什么我的 csv 文件只写了一行?

[英]Why is my csv file only writing one line?

import csv
def write_to_dictionaries_to_csv(csvWriter,lst_dic,lst_keys):
  for dic in data:
    lst = []
    for key in lst_keys:
      if key in dic:
        value = dic[key]
        lst.append(value)
    return lst

data = [{'tow_reason': 'IL', 'tow_date': '2013-06-18'}, {'tow_date': '2014-09-25', 'tow_reason': 'GA'}]

with open("smallDataFileIWrote.csv", 'w') as f_out:
  csv_w = csv.writer(f_out)
  result = write_to_dictionaries_to_csv(csv_w, data, ['tow_reason','tow_date'])
  csv_w.writerow(result)

Why is this code only writing:为什么这段代码只写:

IL,2013-06-18

to the file?到文件?

I want the file to have both:我希望文件同时具有:

IL, 2013-06-18
GA, 2014-09-25

written to the file what am I doing wrong?写入文件我做错了什么?

You are reinitializing the lst every time in the loop and return inside the loop.您每次都在循环中重新初始化lst并在循环内返回。

Move it out:将其移出:

def write_to_dictionaries_to_csv(csvWriter,lst_dic,lst_keys):
    lst = []
    for dic in data:
        row = []
        for key in lst_keys:
            if key in dic:
                value = dic[key]
                row.append(value)
        lst.append(row)
    return lst

For the writing:对于写作:

result = write_to_dictionaries_to_csv(csv_w, data, ['tow_reason','tow_date'])
for row in result:
  csv_w.writerow(row)

Final code:最终代码:

import csv


def write_to_dictionaries_to_csv(lst_keys):
    lst = []
    for dic in data:
        row = []
        for key in lst_keys:
            if key in dic:
                value = dic[key]
                row.append(value)
        lst.append(row)
    return lst


data = [{'tow_reason': 'IL', 'tow_date': '2013-06-18'},
        {'tow_date': '2014-09-25', 'tow_reason': 'GA'}]

with open('smallDataFileIWrote.csv', 'w', newline='\n', encoding='utf-8') as f_out:
    csv_w = csv.writer(f_out)
    result = write_to_dictionaries_to_csv(['tow_reason', 'tow_date'])
    for row in result:
        csv_w.writerow(row)

P/s: Your code is quite ugly. P/s:你的代码很丑。 Try removing unnecessary parts/variables and naming variables more meaningful.尝试删除不必要的部分/变量并命名变量更有意义。

Your lst is being empty, because it is inside loop.你的lst是空的,因为它在循环内。 Try this尝试这个

import csv
def write_to_dictionaries_to_csv(csvWriter,lst_dic,lst_keys):
lst = []
for dic in data:

for key in lst_keys:
  if key in dic:
    value = dic[key]
    lst.append(value)
return lst

data = [{'tow_reason': 'IL', 'tow_date': '2013-06-18'}, {'tow_date': '2014-09-25', 'tow_reason': 'GA'}]

with open("smallDataFileIWrote.csv", 'w') as f_out:
 csv_w = csv.writer(f_out)

result = write_to_dictionaries_to_csv(csv_w, data, ['tow_reason','tow_date']) csv_w.writerow(result)结果 = write_to_dictionaries_to_csv(csv_w, data, ['tow_reason','tow_date']) csv_w.writerow(result)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM