Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #99930

filter a list of strings

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From <c.buhtz@posteo.jp>
Newsgroups comp.lang.python
Subject filter a list of strings
Date Thu, 3 Dec 2015 02:15:38 +0100
Lines 20
Message-ID <mailman.155.1449122975.14615.python-list@python.org> (permalink)
Mime-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
X-Trace news.uni-berlin.de pmAs6GNTaKYPzwo2M0LJwQPviuYQdxA2vA1KJeHKlvvQ==
Return-Path <c.buhtz@posteo.jp>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.025
X-Spam-Evidence '*H*': 0.95; '*S*': 0.00; 'one?': 0.05; 'items)': 0.09; 'iterate': 0.09; 'long)': 0.09; 'received:172.16.0': 0.09; '10.000': 0.16; 'btw:': 0.16; 'item:': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'string': 0.17; 'code.': 0.23; "doesn't": 0.26; 'example': 0.26; 'subject:list': 0.26; 'correct': 0.28; 'list': 0.34; 'could': 0.35; 'done': 0.35; 'filter': 0.35; 'item': 0.35; 'there': 0.36; 'to:addr:python-list': 0.36; 'charset:us- ascii': 0.37; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'from:no real name:2**0': 0.60; 'header:Message-Id:1': 0.61; 'more': 0.63; 'course.': 0.67; '.....': 0.76; '100': 0.79; 'received:185': 0.91
X-Mailer Claws Mail 3.9.3 (GTK+ 2.24.23; i686-pc-linux-gnu)
X-Mailman-Approved-At Thu, 03 Dec 2015 01:09:34 -0500
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:99930

Show key headers only | View raw


I would like to know how this could be done more elegant/pythonic.

I have a big list (over 10.000 items) with strings (each 100 to 300
chars long) and want to filter them.

list = .....

for item in list[:]:
  if 'Banana' in item:
     list.remove(item)
  if 'Car' in item:
     list.remove(item)

There are a lot of more conditions of course. This is just example code.
It doesn't look nice to me. To much redundance.

btw: Is it correct to iterate over a copy (list[:]) of that string list
and not the original one?
-- 
GnuPGP-Key ID 0751A8EC

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

filter a list of strings <c.buhtz@posteo.jp> - 2015-12-03 02:15 +0100
  Re: filter a list of strings Jussi Piitulainen <harvesting@is.invalid> - 2015-12-03 08:32 +0200
    Re: filter a list of strings <c.buhtz@posteo.jp> - 2015-12-03 10:27 +0100
      Re: filter a list of strings Jussi Piitulainen <harvesting@is.invalid> - 2015-12-03 13:53 +0200
      Re: filter a list of strings Peter Pearson <pkpearson@nowhere.invalid> - 2015-12-05 19:42 +0000
    Re: filter a list of strings Chris Angelico <rosuav@gmail.com> - 2015-12-03 20:40 +1100
    Re: filter a list of strings Wolfgang Maier <wolfgang.maier@biologie.uni-freiburg.de> - 2015-12-03 10:46 +0100
    Re: filter a list of strings Laura Creighton <lac@openend.se> - 2015-12-03 10:53 +0100
    Re: filter a list of strings jmp <jeanmichel@sequans.com> - 2015-12-03 11:03 +0100
    Re: filter a list of strings Peter Otten <__peter__@web.de> - 2015-12-03 11:13 +0100
    Re: filter a list of strings Denis McMahon <denismfmcmahon@gmail.com> - 2015-12-03 14:16 +0000
      Re: filter a list of strings Jussi Piitulainen <harvesting@is.invalid> - 2015-12-03 17:02 +0200
  Re: filter a list of strings Grobu <snailcoder@retrosite.invalid> - 2015-12-03 13:17 +0100

csiph-web