Python Forum
Compare element of list with line of file : if match, delete line
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Compare element of list with line of file : if match, delete line
#1
Hi Smile

I have a list:
['123;G-12;http//www.g.ch/bidule_12', '456;G-422;http//www.g.ch/bidule_422', '789;G-562;http//www.g.ch/bidule_562']
I have a csv.file with following lines:
123;G-12;http//www.g.ch/bidule_12
456;G-422;http//www.g.ch/bidule_422
789;G-562;http//www.g.ch/bidule_562
breu
5555;G-0;http//www.g.ch/bidule_0

As a result, I want only these lines remaining in my csv.file:
breu
5555;G-0;http//www.g.ch/bidule_0

So, my python script is supposed to compare each element of my list with each line ; if they match, the line is deleted in the csv.file.

I tried (for a long time) loop + "replace" or "re.sub" with no success.

Any idea?

Thanks Smile
Reply


Messages In This Thread
Compare element of list with line of file : if match, delete line - by silfer - Jul-21-2018, 11:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  element in list detection problem jacksfrustration 5 444 Apr-11-2024, 05:44 PM
Last Post: deanhystad
  Line graph with two superimposed lines sawtooth500 4 381 Apr-02-2024, 08:56 PM
Last Post: sawtooth500
  Compare current date on calendar with date format file name Fioravanti 1 279 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  How to add multi-line comment section? Winfried 1 239 Mar-24-2024, 04:34 PM
Last Post: deanhystad
  break print_format lengthy line akbarza 4 415 Mar-13-2024, 08:35 AM
Last Post: akbarza
  Reading and storing a line of output from pexpect child eagerissac 1 4,306 Feb-20-2024, 05:51 AM
Last Post: ayoshittu
  coma separator is printed on a new line for some reason tester_V 4 536 Feb-02-2024, 06:06 PM
Last Post: tester_V
  problem with spliting line in print akbarza 3 428 Jan-23-2024, 04:11 PM
Last Post: deanhystad
  Unable to understand the meaning of the line of code. jahuja73 0 328 Jan-23-2024, 05:09 AM
Last Post: jahuja73
  Receive Input on Same Line? johnywhy 8 768 Jan-16-2024, 03:45 AM
Last Post: johnywhy

Forum Jump:

User Panel Messages

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