def add_at_l_idx(t, idx, val, op=operator.__add__): """See add_at_idx but uses typ=list""" return add_at_idx(t, idx, val, typ=list, op=op)