¡@

Home 

python Programming Glossary: nli.nested_list

Convert list of positions [4, 1, 2] of arbitrary length to an index for a nested list

http://stackoverflow.com/questions/6558365/convert-list-of-positions-4-1-2-of-arbitrary-length-to-an-index-for-a-nested

to insert. nli NestedListIter l3 nli.find 5 nli.insert 9 nli.nested_list 1 2 3 4 9 5 6 7 8 As you can see you can insert something into.. in an unpleasant way nli._insert_at nli.stack 1 10 nli.nested_list 1 2 3 4 10 9 5 6 7 8 nli.get_item Traceback most recent call.. 4 inside l1 . nli.go_to_head nli.find 4 nli.insert 11 nli.nested_list 1 2 3 11 4 10 9 5 6 7 8 From the perspective of flat access..