如何删除csv文件中的整行并保存对同一文件的更改? [英] how to delete entire row in csv file and save changes on same file?

查看:67
本文介绍了如何删除csv文件中的整行并保存对同一文件的更改?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是python的新手,请尝试修改csv文件,以便我能够根据给定的列表删除具有特定字段的特定行.在我当前的代码中,我得到了要删除的行,但无法删除并将更改保存在同一文件中(替换).

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. 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

有什么帮助吗?

推荐答案

使用列表理解将所有行读入列表,并排除不需要的行.然后以模式 w (写入模式)将行重写到文件中,该模式将覆盖或替换文件的内容:

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:

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)

这篇关于如何删除csv文件中的整行并保存对同一文件的更改?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆