vote up -2 vote down star

had an example in my newbie notes and thought it wouldn't hurt to share it...

>>> lst1=[1,2,3]
>>> lst2 = lst1         # reference
>>> lst3 = lst1[:]      # copy
>>> lst1, lst2, lst3    
([1, 2, 3], [1, 2, 3], [1, 2, 3])
>>> del lst1[1]; lst1, lst2, lst3
([1, 3], [1, 3], [1, 2, 3])
flag

5  
So what's the question...? – Alex Martelli May 25 at 2:53
what's the point of this website/community? - to abide by jeopardy rules, or to try and share info that may be useful? – jd May 25 at 3:36
3  
The proper form is to pose a question, and then use your notes as the answer. So, the question in this case is something like "what is the difference between an object reference and an object copy" with a body like "How are object references and copies alike and different?". Then use your notes along with some text explaining what each thing does as an answer. – Chas. Owens May 25 at 4:10

closed as not a real question by Alex Martelli, dF, Jason Baker, Greg Hewgill, Rytmis May 25 at 3:15

Browse other questions tagged or ask your own question.