Python Forum
Understanding slice copying in for loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Understanding slice copying in for loop
#3
I think the more important is the reason why the code iterate over a copy of the list.
In the loop you add the words with len > 6 to the list. You should not change the list you iterate over. In this particular case you will enter a infinite loop. If you delete elements from a list you iterate over - you will get unexpected results as some elements will never be used in the loop.
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
RE: Understanding slice copying in for loop - by buran - Jul-02-2018, 07:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Fix pandas copy/slice warning. deanhystad 3 987 Sep-07-2023, 03:18 PM
Last Post: deanhystad
  Slice creates new objects? fmr300 4 1,452 Jul-20-2022, 12:34 PM
Last Post: fmr300
  InvalidIndexError: (slice(None, None, None), slice(None, -1, None)) SuperNinja3I3 1 4,745 Jul-15-2022, 05:59 AM
Last Post: Larz60+
  Slice list Moris526 1 1,724 Dec-24-2020, 02:19 AM
Last Post: deanhystad
  increase and decrease a slice value? KEYS 2 2,191 Nov-10-2020, 11:35 PM
Last Post: KEYS
  understanding basic loop behaviour vinci 5 3,052 Feb-11-2020, 09:53 PM
Last Post: vinci
  Pass Tuple as a Slice nagymusic 2 2,448 Dec-12-2019, 04:42 AM
Last Post: nagymusic
  Preferred way to slice a list SvetlanaofVodianova 3 2,665 Dec-09-2019, 11:50 PM
Last Post: SvetlanaofVodianova
  slice python array on condition Gigux 2 2,348 Nov-03-2019, 07:21 PM
Last Post: Larz60+
  How to append and drop to next line while slice/indexing emryscass 3 2,750 Sep-26-2019, 01:06 PM
Last Post: Malt

Forum Jump:

User Panel Messages

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