简体   繁体   English

删除一系列csv列

[英]Deleting a range of csv columns

I am trying to create an importable module to delete a range of columns (specifically columns 73-177 in the file I am working with).I am attempting to edit this file i/o code that is written for removing a column based on the field name. 我正在尝试创建一个可导入的模块来删除一系列列(特别是我正在使用的文件中的列73-177)。我正在尝试编辑此文件i / o代码,该代码是为了删除基于列的列而编写的字段名称。 I want to modify this code to delete columns 73-177 in a csv file. 我想修改此代码以删除csv文件中的列73-177。 What do I need to do to accomplish this? 我需要做些什么才能做到这一点?

def removeColumns(num1, num2, inputFILE, FileName):
    inPUTfile = open(inputFILE, 'r')
    outPUTfile = open(FileName, 'w')
    line = inPUTfile.readline()
    while line:
            # Delete Specified columns. First column range number, second column range number (+1)
            lineList = line.split('\t')
            removeCOL = "Calendar-Year"
            i = 0
            while lineList[i] != removeCOL:  #(linesout?):
                i = i + 1
            lineList.pop(i) #remove these fields from the list.append
            #write modified fields
            remove = "\t".join(lineList)
            outPUTfile.write(line) #write the new field names outfile
            for line in inPUTfile:  #remove field i from each remaining line and write it in the output file  &modify input line
                lineList = line.split( ) #convert to a list
                lineList.pop(i) #remove fields from the list
                line = '\t'.join(lineList)
                line = line + '\n' #add a carriage return to the end of the row
                outPUTfile.write(line)# Write the modified line in the output file
            inPUTfile.close() #close the input file
            outPUTfile.close() #close the output file
    return outPUTfile
    print outPUTfile

I realize that you asked how to modify the original code, but here I honestly think it'd be easier to understand how to do it a different way. 我意识到你问过如何修改原始代码,但在这里我真的认为理解如何以不同的方式做到这一点会更容易。 Python has a useful csv module which handles a lot of the work for you. Python有一个有用的csv模块,可以为你处理很多工作。 Something like: 就像是:

import csv

remove_from = 2
remove_to = 5

with open("to_delete.csv", "rb") as fp_in, open("newfile.csv", "wb") as fp_out:
    reader = csv.reader(fp_in, delimiter="\t")
    writer = csv.writer(fp_out, delimiter="\t")
    for row in reader:
        del row[remove_from:remove_to]
        writer.writerow(row)

will turn 将转向

$ cat to_delete.csv 
a   b   c   d   e   f   g
1   2   3   4   5   6   7
8   9   10  11  12  13  14
15  16  17  18  19  20  21

into

$ cat newfile.csv 
a   b   f   g
1   2   6   7
8   9   13  14
15  16  20  21

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

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