[Tutor] Copying Variables

Prasad, Ramit ramit.prasad at jpmchase.com
Mon Jul 25 17:45:29 CEST 2011


From: tutor-bounces+ramit.prasad=jpmchase.com at python.org [mailto:tutor-bounces+ramit.prasad=jpmchase.com at python.org] On Behalf Of naheed arafat
Sent: Monday, July 25, 2011 10:17 AM
To: Steven D'Aprano
Cc: Tutor at python.org
Subject: Re: [Tutor] Copying Variables

I got a question in this context.
suppose
a={'a': 3, 'b': [1, 2], 5: 100}
------------------b=a --------------    vs----------   b=copy.copy(a)------------
----------------------------------------------------
b[5]=6   ----------------------------------------      b[5]=6
output: -----------------------------------------      output:
b={'a': 3, 'b': [1, 2], 5: 6}-------------------     b={'a': 3, 'b': [1, 2], 5: 6}
a={'a': 3, 'b': [1, 2], 5: 6} -------------------    a={'a': 3, 'b': [1, 2], 5: 100}
that means b=a & b=copy.copy(a) aren't the same.
but
b['b'].append(3)
output:
b={'a': 3, 'b': [1, 2, 3], 5: 100}--------------b={'a': 3, 'b': [1, 2, 3], 5: 100}
a={'a': 3, 'b': [1, 2, 3], 5: 100}--------------a={'a': 3, 'b': [1, 2, 3], 5: 100}
now doesn't it mean that b=a & b=copy.copy(a) both are same?
=========================================================================

Copy.copy is copies only a single level (shallow); it creates a new dictionary object but the key/values of the new dictionary object are the same as the source. In this case, the anonymous list with [1,2] is shared between both instances and a modification to one will modify it for any object containing a reference to that list. On the other hand, if you use copy.deepcopy you will get a different result because it will create a copy of the anonymous, internal list as well as the dictionary containing it.

>>> a={'a': 3, 'b': [1, 2], 5: 100}
>>> import copy
>>> b = copy.copy(a)
>>> b['b'].append(3)
>>> b
{'a': 3, 'b': [1, 2, 3], 5: 100}
>>> a
{'a': 3, 'b': [1, 2, 3], 5: 100}
>>> b = copy.deepcopy(a)
>>> a
{'a': 3, 'b': [1, 2, 3], 5: 100}
>>> b
{'a': 3, 'b': [1, 2, 3], 5: 100}
>>> b['b'].append(3)
>>> a
{'a': 3, 'b': [1, 2, 3], 5: 100}
>>> b
{'a': 3, 'b': [1, 2, 3, 3], 5: 100}






Ramit


Ramit Prasad | JPMorgan Chase Investment Bank | Currencies Technology
712 Main Street | Houston, TX 77002
work phone: 713 - 216 - 5423




This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.

This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.

Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to European legal entities.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20110725/d6e0b824/attachment-0001.html>


More information about the Tutor mailing list