אלעזר wrote: > x[-0] # intention: x[len(x)] > > is an error in the first place, which happens not to raise an > Exception in Python, but rather gives you a wrong result. Using x[End-n] would allow an exception to be properly raised when n is out of bounds instead of spuriously wrapping around. -- Greg