Python删除txt两端空格以及提取每一行的数字

假设我们的data数据是这样的,

Python删除txt两端空格以及提取每一行的数字_第1张图片

现在需要删除每一行两端的空格,并且提取含有非法标识符(如倒数第二行含有#)的一行

# -*- coding: utf-8 -*-
with open("D:\\...\\data.txt","r") as fr,open("D:\\...\\new.txt","w") as fw:
    for line in fr.readlines():
        line = line.strip() #strip()方法用于移除字符串头尾指定的字符(默认空格或换行符)      
        fw.write(line+"\r")  #“\r”是换行,光标在上一行;“\n” 是回车,光标在下一行    

with open ("D:\\...\\new.txt","r") as f:
    for line in f.readlines():
        #excep = [i for i in line if not str.isdigit(i)]#每一行含有非数字,就进行赋值操作
        excep = [i for i in line if i not in '\n .0123456789']#这里是为了提取图片倒数第二行,字符串可以写入自己想过滤的内容
        if (len(excep)!=0):
            print(excep)
       

你可能感兴趣的:(Python)