Is this possible:
myList = []
myList[12] = 'a'
myList[22] = 'b'
myList[32] = 'c'
myList[42] = 'd'
When I try, I get:
# IndexError: list assignment index out of range #
|
|
You'll have to pre-fill it with something (e.g.
Alternatively, use a dict instead of a list, as Alex Martelli suggested. |
|||
|
|
|
For a "sparse list" you could use a
etc. If you want an actual list (initialize it with |
|||||||||||
|
|
Here's a quick list wrapper that will auto-expand your list with zeros if you attempt to assign a value to a index past it's length.
Now you can do this:
|
|||
|
|
|
Not without populating the other locations in the list with something (like There's also
would just insert 'a' at the first unoccupied location in the list (which would be 0 using your example). So, as I said, there has to be something in the list at indexes 0-11 before you can insert something at |
|||
|
|
|
If you don't know the size of the list ahead of time, you could use try/except and then Extend the list in the except:
----- Update ---------------------------------------------
|
|||||||||
|