newbie : removing recurring element from lists
Mark Rowe
bdash at gmx.net
Fri Oct 11 06:14:40 EDT 2002
More information about the Python-list mailing list
Fri Oct 11 06:14:40 EDT 2002
- Previous message (by thread): newbie : removing recurring element from lists
- Next message (by thread): newbie : removing recurring element from lists
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 2002-10-11 11:03:45 +0100 Andrew Thompson <andrew.thompson at ashecastle.com> wrote: > Much better to let the machine do the work : > ' > > while aList.__contains__(yourValue): > aList.remove(yourValue) > > ' Its probably a bit cleaner to phrase that as while yourValue in aList: aList.remove(yourValue) HTH, Mark
- Previous message (by thread): newbie : removing recurring element from lists
- Next message (by thread): newbie : removing recurring element from lists
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list