Python Forum
Automate the boring stuff, inserting commas in list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Automate the boring stuff, inserting commas in list
#4
(Apr-21-2019, 04:17 AM)DJ_Qu Wrote: Why not inserting at -2, that is the second to last? I spent quite a while thinking about it, I can't figure out why the negative index needs to be -1. Sick

When in doubt, it's always good to start with built-in help:

>>> help(list.insert)
Help on method_descriptor:

insert(self, index, object, /)
    Insert object before index.
(END)
I think that this is quite straightforward explanation.

Why is it so? Try to answer the question: how to insert something before first element which happens to have index 0? There is no index that can represent that position... This ain't replace method which replaces element on specific index.
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
RE: Automate the boring stuff, inserting commas in list - by perfringo - Apr-21-2019, 03:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Commas issue in variable ddahlman 6 1,731 Apr-05-2024, 03:45 PM
Last Post: deanhystad
  help with commas in print functions kronhamilton 11 5,460 Feb-10-2022, 02:02 PM
Last Post: mishraakash
  Run the code for some stuff it does not return me why Anldra12 3 3,790 Apr-19-2021, 02:01 PM
Last Post: Anldra12
  "Automate the Boring Stuff with Python" creating a path works but only for CMD promt Milos 2 3,654 Nov-28-2020, 01:08 PM
Last Post: Larz60+
  Unable to print stuff from while loop Nick1507 4 3,386 Sep-17-2020, 02:26 PM
Last Post: Nick1507
  How Do I Install Stuff for Python? CopBlaster 6 4,769 May-08-2020, 12:27 PM
Last Post: hussainmujtaba
  Learning to have Class and doing stuff with it... bako 2 2,673 Apr-29-2020, 05:07 PM
Last Post: bako
  How to automate list separation. NOOB LobateScarp 18 8,191 Sep-24-2019, 07:28 PM
Last Post: LobateScarp
  Getting Cells from the Sheets "automate the boring stuff" Shafla 8 5,588 Sep-24-2019, 04:53 AM
Last Post: snippsat
  Help|CSV Writing on List with Inner Commas soothsayerpg 2 2,998 Jul-20-2019, 06:59 AM
Last Post: scidam

Forum Jump:

User Panel Messages

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