从txt文件的列表中删除指定的元素

杰伊凯

我有一个1825 x 51表格的文本文件。我试图读入文本文件并将此表写入新的文本文件,同时从表中删除某些列。我无法弄清楚如何删除整列,因为列表是一个字符串,所以我尝试进入每一行并使用if / else语句确定元素是否在所需范围内。如果是,请将其写入输出,否则将其删除。

 if i in range(1,3)+[14]+range(20,27)+range(33,38)+[43]+[45]:
     newNum=data[i]
     data[i]=newNum
 else:
     delete.data

这是我第一次使用python,因此任何帮助将不胜感激!

注释中的代码

with open(inputfilepath,'r') as f:
    outputfile=open(outputfilepath,'w+')
    inSection=False
    for line in f:
        if begin in line:inSection=True
        if inSection:
            keep=range(1,3)+[14]+range(20,27)+range(33,38)+[43]+[45]
            tmp=[]
            spl=line.split('  ')
            for idx in keep:
                tmp.extend(spl[idx])
            outputfile.write('%s\n' % '  '.join(tmp))            
        if end in line:inSection=False
发掘

我可能会喜欢这样的东西:

from __future__ import print_function


def process(infile, keep):
    for line in infile:
        fields = line.split()
        yield ' '.join([_ for i, _ in enumerate(fields) if i in keep])


def main(infile, outfile):
    # The following line (taken from your example) will not work in Python 3 as
    # you cannot "add" ranges to lists. In Python 3 you would need to write:
    # >>> [14] + list(range(20, 27)
    keep = range(1, 3) + [14] + range(20, 27) + range(33, 38) + [43] + [45]
    for newline in process(infile, keep):
        print(newline, file=outfile)


if __name__ == '__main__':
    with open('so.txt') as infile, open('output.txt', 'w') as outfile:
        main(infile, outfile)

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章