Steven D'Aprano wrote: > item = mylist[7-5] > > and so we can simulate variable-offset indexing with no new syntax and > only a very small run-time cost. Oh, I forgot to mention... if both values are literals, as in the example above, there may not even be a run-time cost. CPython's peek-hole optimizer will compile it to mylist[2]. -- Steven