How to delete lines from text file when X character not match in Python

1 Answer

0 votes
with open('d:\data.txt') as file:
    lines = file.readlines()
    result = []
    ch = 'a'
    for line in lines:
        if ch in line:
            result.append(line)

with open('d:\data.txt', 'w') as file:
    file.writelines(result)


'''
run:

aaa bbb ccc
ddd aaa kkk
qqq xxx aaa

'''

 



answered Nov 1, 2017 by avibootz

Related questions

...