doh. i forgot about that. thanks. > You did realise we can access lists from the end as well as > the beginning using negative indices? > >>> L = [1,2,3] > >>> print L[0],L[-1] > 1,3 > >>>