Python Forum
myList.insert(index, element) question
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
myList.insert(index, element) question
#2
What do you mean by "work backward"? The action is a bit confusing because you're modifying a list at the same time as you're reading it for information.

Start with [1, 2, 3].
First time through the loop, you tell it copy element 0 (which is a 1) to spot 1. -> [1, 1, 2, 3]
Next time through the loop, you tell it copy element 1 (which is now a 1) to spot 1 -> [1, 1, 1, 2, 3]
Next time through the loop, you tell it copy element 2 (which is now a 1) to spot 1 -> [1, 1, 1, 1, 2, 3]

It doesn't add 1, 2, 3 because myList has changed by the time the element is looked for.
Reply


Messages In This Thread
myList.insert(index, element) question - by ChrisF - Aug-27-2021, 02:35 PM
RE: myList.insert(index, element) question - by bowlofred - Aug-27-2021, 03:49 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Variable for the value element in the index function?? Learner1 8 705 Jan-20-2024, 09:20 PM
Last Post: Learner1
  How i can add elements to table index of element blazej2533 3 2,047 Dec-03-2020, 08:16 PM
Last Post: Larz60+
  How to get index of minimum element between 3 & 8 in list Mekala 2 2,555 Nov-10-2020, 12:56 PM
Last Post: DeaD_EyE
  Select a part of an element of a list with Index BollerwagenIng 0 1,873 Aug-09-2019, 09:27 AM
Last Post: BollerwagenIng
  Unable to locate element no such element gahhon 6 4,546 Feb-18-2019, 02:09 PM
Last Post: gahhon
  Newbie question for bulk insert into SQL Server database zydjohn 6 12,444 Dec-14-2017, 11:04 PM
Last Post: Larz60+
  Newbie question for sum the specific element in named tuple zydjohn 1 4,234 Dec-12-2017, 07:29 PM
Last Post: buran
  Change single element in 2D list changes every 1D element AceScottie 9 12,129 Nov-13-2017, 07:05 PM
Last Post: Larz60+
  Insert using psycopg giving syntax error near "INSERT INTO" olgethorpe 4 15,697 Jul-21-2017, 07:39 PM
Last Post: nilamo
  Python - Search element in list without the value index salmanfazal01 1 4,271 Nov-04-2016, 02:07 AM
Last Post: Mekire

Forum Jump:

User Panel Messages

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