I'm looking to add an element to list of items, however I'd like to add it at a specific index greater than the current size:
list = [1,2,3] list.insert(10,4) What I'd like to see is something like: [1,2,3,,,,,,4] However I see: [1,2,3,4] Is there any way to produce this kind of behavior easily? Thanks, Drew -- http://mail.python.org/mailman/listinfo/python-list