On May 31, 9:46 pm, rusi <[email protected]> wrote: > So you then use (something like) > > fnc2(c): return c[0:1] + c[2:]
Er sorry -- that should have been
def fnc2(c): return c[0:1] + ('having',) + c[2:]
--
http://mail.python.org/mailman/listinfo/python-list
