简体   繁体   English

如何删除csv文件中的整行并保存对同一文件的更改?

[英]how to delete entire row in csv file and save changes on same file?

i'm new with python and try to modify csv file so i will able to delete specific rows with specific fields according to given list.我是 python 新手并尝试修改 csv 文件,这样我就可以根据给定的列表删除具有特定字段的特定行。 in my current code i get the rows which i want to delete but i can't delete it and save the changes on same file (replace).在我当前的代码中,我得到了我想删除的行,但我无法删除它并将更改保存在同一个文件中(替换)。

 import os, sys, glob
 import time ,csv
 # Open a file
 path = 'C:\\Users\\tzahi.k\\Desktop\\netzer\\'
 dirs = os.listdir( path )
 fileslst = []
 alertsCode = ("42001", "42003", "42006","51001" , "51002" ,"61001" ,"61002","71001",
          "71002","71003","71004","71005","71006","72001","72002","72003","72004",
          "82001","82002","82003","82004","82005","82006","82007","83001","84001")
 # This would print the unnesscery codes 
 for file in dirs:
    if "ALERTS" in file.upper()  :
       fileslst.append(file)
fileslst.sort()

with open(fileslst[-1], 'rb') as csvfile:
    csvReader = csv.reader(csvfile)
    for row in csvReader:
         for alert in alertsCode:
             if any(alert in row[2] for s in alertsCode) :
             print row

any help?有什么帮助吗?

Read all the rows into a list using a list comprehension and excluding the unwanted rows.使用列表推导将所有行读入列表并排除不需要的行。 Then rewrite the rows to the file in mode w (write mode) which overwrites or replaces the content of the file:然后以模式w (写入模式)将行重写到文件中,该模式会覆盖或替换文件的内容:

with open(fileslst[-1], 'rb') as csvfile:
    csvReader = csv.reader(csvfile)
    clean_rows = [row for row in csvReader if not any(alert in row[2] for alert in alertsCode)]
    # csvfile.truncate()

with open(fileslst[-1], 'wb') as csvfile:
    csv_writer = csv.writer(csvfile)
    csv_writer.writerows(clean_rows)

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

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