[Tutor] my newbie program

david din22@cox.net
Thu Nov 21 23:06:01 2002


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
> >>>