Python Forum
Removing items from list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Removing items from list
#5
That's not a good solution, you don't want to modify a list while you are looping over it.

If you haven't done list comprehensions, you can reconstruct a list with a for loop:

new_pass = []
for site_pass in passwords:
    if site_pass[0] != websitetodelete:
        new_pass.append(site_pass)
passwords = new_pass
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Removing items from list - by slackerman73 - Dec-12-2019, 03:19 AM
RE: Removing items from list - by ichabod801 - Dec-12-2019, 03:25 AM
RE: Removing items from list - by slackerman73 - Dec-12-2019, 04:07 AM
RE: Removing items from list - by Malt - Dec-12-2019, 08:37 AM
RE: Removing items from list - by ichabod801 - Dec-12-2019, 02:30 PM
RE: Removing items from list - by nilamo - Dec-12-2019, 08:26 PM
RE: Removing items from list - by ichabod801 - Dec-12-2019, 08:27 PM
RE: Removing items from list - by ibreeden - Dec-13-2019, 12:36 PM
RE: Removing items from list - by Clunk_Head - Dec-13-2019, 05:39 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to parse and group hierarchical list items from an unindented string in Python? ann23fr 1 522 May-23-2024, 05:39 AM
Last Post: Pedroski55
  Removing all strings in a list that are of x length Bruizeh 5 3,350 Aug-27-2021, 03:11 AM
Last Post: naughtyCat
  Removing existing tuples from a list of tuple Bruizeh 4 2,913 May-15-2021, 07:14 PM
Last Post: deanhystad
  Collisions for items in a list Idents 3 2,417 Apr-06-2021, 03:48 PM
Last Post: deanhystad
  Removing items in a list cap510 3 2,439 Nov-01-2020, 09:53 PM
Last Post: cap510
  Help with Recursive solution,list items gianniskampanakis 8 3,771 Feb-28-2020, 03:36 PM
Last Post: gianniskampanakis
  Find 'greater than' items in list johneven 2 4,563 Apr-05-2019, 07:22 AM
Last Post: perfringo
  How to add items within a list Mrocks22 2 2,768 Nov-01-2018, 08:46 PM
Last Post: Mrocks22
  How to keep duplicates and remove all other items in list? student8 1 5,048 Oct-28-2017, 05:52 AM
Last Post: heiner55
  need help removing an item from a list jhenry 4 4,282 Oct-13-2017, 08:15 AM
Last Post: buran

Forum Jump:

User Panel Messages

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