| Home | Trees | Indices | Help |
|---|
|
|
object --+
|
list --+
|
offsetList
Offset lists are lists with indexing offset by 1. With an offset list L, L[n] returns the nth member of the list rather than the (n+1)th member as with ordinary Python list indexing. >>> L = ['a','b','c'] >>> O = offsetList(L) >>> L[2] 'c' >>> O[2] 'b'
|
|||
|
|||
|
|||
|
Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
x[y]
|
x[i]=y
|
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Mon May 11 10:49:19 2009 | http://epydoc.sourceforge.net |