


In-depth understanding of the copy module in python (shallow copy and deep copy)
Mainly introduces the copy module in python.
The copy module includes functions for creating deep and shallow copies of composite objects, including lists, tuples, dictionaries, and instances of user-defined objects.
#copy(x)
#Create a new composite object and Creates a shallow copy of x by copying its members by reference. To put it more deeply,
It copies the object, but still uses references for the elements in the object.
For built-in types, this function is not often used.
Instead, use calling methods such as list(x), dict(x), set(x), etc. to create a shallow copy of x. You must know that
directly using the type name is obviously better than Using copy() is much faster. But they achieve the same effect.
Another point is for those objects that cannot be modified (string, number, tuple), because you don’t have to worry about modifying them. Copying or not does not make much sense.
Another point, you can use the is operator to determine whether objects are copied.
a is b -> True a and b refer to the same object, not copies
-> False a and b are copies of each other
For example, as follows Example, eg:
(1)
>>> a = [1,2,3]
>>> b = copy .copy(a)
>>> b
[1, 2, 3]
>>> a.append(4)
>>> a
[1, 2, 3, 4]
>>> b
[1, 2, 3]
>>> a is b
False
(2)
>>> a = [1,2,3 ]
>>> b = a
>>> b
[1, 2, 3]
>> > a.append(4)
>>> a
[1, 2, 3, 4]
>>> b
[1, 2, 3, 4]
>>> b.append(6)
>>> a, b
([1, 2, 3, 4, 6], [1, 2, 3, 4, 6])
(3)
>>> a = [1 ,2,3]
>>> b = list(a)
>>> b
[1, 2, 3]
>>> a.append(4)
>>> a
[1, 2, 3, 4]
> ;>> b
[1, 2, 3]
>>>
(4)
>>> ; a = [[1], ['a'], ['A']]
>>> b = copy.copy(a)
>> > print a, b
[[1], ['a'], ['A']] [[1], ['a'], ['A']]
>>> b[1].append('b')
>>> b
[[1], ['a', 'b'] , ['A']]
>>> a
[[1], ['a', 'b'], ['A']]
>>> b.append([100,101])
>>> b
[[1], ['a', 'b'], [ 'A'], [100, 101]]
>>> a
[[1], ['a', 'b'], ['A']]
In the example (3), we can see the shallow copy object b of a. They are different objects, so changes to the objects will not
### affect each other, but these The elements of objects a and b refer to the same, so if a or b changes the elements of its object, it will affect ###Another value.
If you want to completely copy an object and the values of all elements of an object, only use the deepcopy() function below.
#deepcopy(x[, visit])## Create a deep copy of x by creating a new composite object and repeatedly copying all members of x.
visit is an optional dictionary whose purpose is to keep track of visited objects, thereby detecting and avoiding repeated cycles in data structures that define
.
Although it is not usually needed, by implementing the methods __copy__(self) and __deepcopy__(self, visit), the
class can implement custom copy methods. These two The methods implement shallow copy and deep copy operations respectively.
__deepcopy__() method must use the dictionary visit to track previously encountered objects during the copy process. For the
__deepcopy__() method, there is no need to
beyond passing the visit to the other deepcopy() methods included in the implementation (if any).
If the class implements the methods __getstate__() and __setstate__() used by the pickle module, then the copy module will use
these methods to create a copy.
, but by implementing the methods __copy__(self) and __deepcopy__(self, visit), the
class can implement a custom copy method. These two methods implement shallow copy respectively. and deep copy operations.
__deepcopy__() method must use the dictionary visit to track previously encountered objects during the copy process. For the
__deepcopy__() method, there is no need to
beyond passing the visit to the other deepcopy() methods included in the implementation (if any).
If the class implements the methods __getstate__() and __setstate__() used by the pickle module, then the copy module will use
these methods to create a copy. , but by implementing the methods __copy__(self) and __deepcopy__(self, visit), the
class can implement a custom copy method. These two methods implement shallow copy and deep copy operations respectively.
__deepcopy__() method must use the dictionary visit to track previously encountered objects during the copy process. For the
__deepcopy__() method, there is no need to
beyond passing the visit to the other deepcopy() methods included in the implementation (if any).
If the class implements the methods __getstate__() and __setstate__() used by the pickle module, then the copy module will use
these methods to create a copy.
eg:
>>> a = [[1], ['a'], ['A']]
>>> ; import copy
>>> b = copy.deepcopy(a)
>>> b
[[1], ['a' ], ['A']]
>>> c = copy.copy(a)
>>> c
[[1] , ['a'], ['A']]
>>> a[1].append('b')
>>> a
[[1], ['a', 'b'], ['A']]
>>> b
###[[1], [' a'], ['A']]######>>> c######[[1], ['a', 'b'], ['A']]# #####Things to note: ######(1) The copy module is used for simple types like integers and strings, but this is rarely needed. ######(2) These copy functions cannot work with modules, class objects, functions, methods, tracebacks, stack frames, files, sockets and other similar types. ######If the object cannot be copied, a copy.error exception will be raised. ###The above is the detailed content of In-depth understanding of the copy module in python (shallow copy and deep copy). For more information, please follow other related articles on the PHP Chinese website!

Python and C each have their own advantages, and the choice should be based on project requirements. 1) Python is suitable for rapid development and data processing due to its concise syntax and dynamic typing. 2)C is suitable for high performance and system programming due to its static typing and manual memory management.

Choosing Python or C depends on project requirements: 1) If you need rapid development, data processing and prototype design, choose Python; 2) If you need high performance, low latency and close hardware control, choose C.

By investing 2 hours of Python learning every day, you can effectively improve your programming skills. 1. Learn new knowledge: read documents or watch tutorials. 2. Practice: Write code and complete exercises. 3. Review: Consolidate the content you have learned. 4. Project practice: Apply what you have learned in actual projects. Such a structured learning plan can help you systematically master Python and achieve career goals.

Methods to learn Python efficiently within two hours include: 1. Review the basic knowledge and ensure that you are familiar with Python installation and basic syntax; 2. Understand the core concepts of Python, such as variables, lists, functions, etc.; 3. Master basic and advanced usage by using examples; 4. Learn common errors and debugging techniques; 5. Apply performance optimization and best practices, such as using list comprehensions and following the PEP8 style guide.

Python is suitable for beginners and data science, and C is suitable for system programming and game development. 1. Python is simple and easy to use, suitable for data science and web development. 2.C provides high performance and control, suitable for game development and system programming. The choice should be based on project needs and personal interests.

Python is more suitable for data science and rapid development, while C is more suitable for high performance and system programming. 1. Python syntax is concise and easy to learn, suitable for data processing and scientific computing. 2.C has complex syntax but excellent performance and is often used in game development and system programming.

It is feasible to invest two hours a day to learn Python. 1. Learn new knowledge: Learn new concepts in one hour, such as lists and dictionaries. 2. Practice and exercises: Use one hour to perform programming exercises, such as writing small programs. Through reasonable planning and perseverance, you can master the core concepts of Python in a short time.

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment