Python Forum
removing items from a list or group within a for loop.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
removing items from a list or group within a for loop.
#3
(Nov-10-2019, 09:09 PM)ichabod801 Wrote: 1: If you find this confusing, so does Python.

3. It loops over the copy of the list, but then when it does the removal, it does that to the original list.

5. I'm not used to seeing people make copies to loop over. More often I see people building new lists:

new_list = []
for item in old_list:
    if is_valid(item):
        new_list.append(item)
old_list = new_list
6. I'm not sure what Python expects, but it not being safe to mess with what you are looping over is a great way to think about it.
1: Okay, I got it. Thank you.

3: The point of removing was not to slow down the program because the bullets will keep adding up. Isn't it counter-intuitive then to make a copy? because a copy of un-deleted bullets will still reside? What am I missing?

5. I need some time to understand your codes... keeping look at 'em 'til I digest but thank you.

6. Okay, got it.
Reply


Messages In This Thread
RE: removing items from a list or group within a for loop. - by allusernametaken - Nov-11-2019, 12:37 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  removing one list element without using its index paul18fr 7 1,179 Feb-22-2025, 07:59 PM
Last Post: DeaD_EyE
  Why do I have to repeat items in list slices in order to make this work? Pythonica 7 2,902 May-22-2023, 10:39 PM
Last Post: ICanIBB
  Finding combinations of list of items (30 or so) LynnS 1 1,516 Jan-25-2023, 02:57 PM
Last Post: deanhystad
  For Word, Count in List (Counts.Items()) new_coder_231013 6 6,785 Jul-21-2022, 02:51 PM
Last Post: new_coder_231013
  How to get list of exactly 10 items? Mark17 1 3,673 May-26-2022, 01:37 PM
Last Post: Mark17
  how to assign items from a list to a dictionary CompleteNewb 3 2,678 Mar-19-2022, 01:25 AM
Last Post: deanhystad
  Reading list items without brackets and quotes jesse68 6 6,831 Jan-14-2022, 07:07 PM
Last Post: jesse68
Question How to gather specific second-level items from a list chatguy 2 2,304 Dec-17-2021, 05:05 PM
Last Post: chatguy
  deleting select items from a list Skaperen 13 6,716 Oct-11-2021, 01:02 AM
Last Post: Skaperen
  Getting All Items From A List knight2000 4 3,174 Sep-25-2021, 12:56 AM
Last Post: knight2000

Forum Jump:

User Panel Messages

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