Tagged Questions
17
votes
5answers
3k views
Python list slice syntax used for no obvious reason
I occasionally see the list slice syntax used in Python code like this:
newList = oldList[:]
Surely this is just the same as:
newList = oldList
Or am I missing something?
0
votes
3answers
52 views
python deepcopy and shallow copy and pass reference
A question about python deepcopy and shallow copy.
the post at
What is the difference between a deep copy and a shallow copy?
cannot help me.
why e.g. 1 's sum is 6 not 10 ?
e.g.1 :
kvps = { ...
0
votes
1answer
160 views
How to shallow copy app engine model instance to create new instance?
I want to implement a simple VersionedModel base model class for my app engine app. I'm looking for a pattern that does not involve explicitly choosing fields to copy.
I am trying out something like ...