What causes you to think they're the same thing? Did you use the id() function to confirm that? – S.LottFeb 9 '11 at 16:39
1
They printed the same value. That made me think so. I was wondering that why should one waste time in writing extra characters when we get same output without [:]. Never knew about id(). Thanks for pointing that out. – Dharmit ShahFeb 9 '11 at 16:52
5
@Dharmit: It's ok, don't be intimidated! You are learning and its obvious to ask such question. It was a good question. We all begin somewhere, lest we forget that we also used to ask such questions when we were learning :) – user225312Feb 9 '11 at 17:14
Thanks. That's the reason I preferred asking on SO. On forums, at times, people get angry for asking very basic questions. :( – Dharmit ShahFeb 9 '11 at 17:18
2
@Dharmit: Best to avoid such people and continue learning. Best of luck! – user225312Feb 9 '11 at 17:21
+1: They're not the same thing at all. – S.LottFeb 9 '11 at 16:38
6
+20 for something this basic (that has propably been asked before here, has been explained in a hundred other questions using it, is in the official tutorial and propably most others, etc.)... – delnanFeb 9 '11 at 16:51
3
@delnan: That is the magic of SO ;-) – user225312Feb 9 '11 at 16:52
2
@delnan Find a duplicate and vote to close then. – marcogMar 23 '11 at 17:44
l[:] is called slice notation. It can be used to extract only some of the elements in the list, but in this case the bounds are omitted so the entire list is returned, but because of the slice, this will actually be a reference to a different list than l that contains the same elements. This technique is often used to make shallow copies or clones.
id()function to confirm that? – S.Lott Feb 9 '11 at 16:39id(). Thanks for pointing that out. – Dharmit Shah Feb 9 '11 at 16:52