Nov-04-2019, 03:31 PM
Hi
Have this code to delete line contain name "sandy15" however it delete others lines two and always keep the last line in the test
Before the code:
sandy15
sandy14
manny15
hello15
After the code:
hello15
Thx in advanced
here is the code:
Have this code to delete line contain name "sandy15" however it delete others lines two and always keep the last line in the test
Before the code:
sandy15
sandy14
manny15
hello15
After the code:
hello15
Thx in advanced
here is the code:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
pdu_file = "/labhome/manny/pdu_file.orig" name = "sandy15" def rm_pdu_record(): with open (pdu_file, 'r' ) as f: lines = f.readlines() with open (pdu_file, 'w' ) as f: for line in lines: if name in line.strip( "\n" ): continue f.write(line) rm_pdu_record() |