hi say i have a list
alist = ['a','b','c','e','d','f'] I wanted to change the elements , say alist[2:4] . If i do alist[2:4] = "t" , it gives ['a', 'b', 't', 'd', 'f'] which is not what i want. I wanted alist = ['a','b','t','t','d','f'] My list may have more elements, and i may need to replace elements from different positions, eg alist[10:15] , alist[30:40] etc.. thanks. -- http://mail.python.org/mailman/listinfo/python-list