Python Forum
Delete specific lines contain specific words
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Delete specific lines contain specific words
#1
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:
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()
Reply
#2
The f.write must be inside the loop, otherwise you only handle the last line

for line in lines:
    if name in line.strip("\n"):
        continue
    f.write(line)
Reply
#3
Good catch,

Thank you
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Building specific Python version on Raspberry PI 5 (Raspbian) andrewk 2 639 Feb-03-2025, 11:41 AM
Last Post: iterate
  Word matching with specific parameters CascadeDiver 3 828 Jan-28-2025, 02:10 PM
Last Post: perfringo
  Check time within specific time ranges basvdm 3 555 Jan-20-2025, 05:10 PM
Last Post: Gribouillis
  Help about a specific time selection QJZ 0 374 Dec-01-2024, 11:25 AM
Last Post: QJZ
  Install a module to a specific to Python Installation (one of many)) tester_V 2 1,746 Oct-29-2024, 03:25 PM
Last Post: snippsat
  [solved] how to delete the 10 first lines of an ascii file paul18fr 7 1,656 Aug-07-2024, 08:18 PM
Last Post: Gribouillis
  recurring events every specific amount of days jacksfrustration 6 1,846 Jun-27-2024, 01:13 PM
Last Post: deanhystad
  How to compare specific elements of a TSV in difflib gonksoup 1 845 Jun-08-2024, 02:05 PM
Last Post: Gribouillis
  Schedule exit a program at a specific time 4 am every day. chubbychub 3 1,368 May-17-2024, 03:45 PM
Last Post: chubbychub
  delete specific row of entries jacksfrustration 3 1,219 Feb-13-2024, 11:13 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020