dhruvbird wrote: > > On a side note, is there any other way to append to a list using > slices (apart from the one below): > x[len(x):len(x)] = [item to append]
dy you mean x.extend([1,2,3]) ? -- http://mail.python.org/mailman/listinfo/python-list
dhruvbird wrote: > > On a side note, is there any other way to append to a list using > slices (apart from the one below): > x[len(x):len(x)] = [item to append]
dy you mean x.extend([1,2,3]) ? -- http://mail.python.org/mailman/listinfo/python-list