search
HomeBackend DevelopmentPython TutorialIn-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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Merging Lists in Python: Choosing the Right MethodMerging Lists in Python: Choosing the Right MethodMay 14, 2025 am 12:11 AM

TomergelistsinPython,youcanusethe operator,extendmethod,listcomprehension,oritertools.chain,eachwithspecificadvantages:1)The operatorissimplebutlessefficientforlargelists;2)extendismemory-efficientbutmodifiestheoriginallist;3)listcomprehensionoffersf

How to concatenate two lists in python 3?How to concatenate two lists in python 3?May 14, 2025 am 12:09 AM

In Python 3, two lists can be connected through a variety of methods: 1) Use operator, which is suitable for small lists, but is inefficient for large lists; 2) Use extend method, which is suitable for large lists, with high memory efficiency, but will modify the original list; 3) Use * operator, which is suitable for merging multiple lists, without modifying the original list; 4) Use itertools.chain, which is suitable for large data sets, with high memory efficiency.

Python concatenate list stringsPython concatenate list stringsMay 14, 2025 am 12:08 AM

Using the join() method is the most efficient way to connect strings from lists in Python. 1) Use the join() method to be efficient and easy to read. 2) The cycle uses operators inefficiently for large lists. 3) The combination of list comprehension and join() is suitable for scenarios that require conversion. 4) The reduce() method is suitable for other types of reductions, but is inefficient for string concatenation. The complete sentence ends.

Python execution, what is that?Python execution, what is that?May 14, 2025 am 12:06 AM

PythonexecutionistheprocessoftransformingPythoncodeintoexecutableinstructions.1)Theinterpreterreadsthecode,convertingitintobytecode,whichthePythonVirtualMachine(PVM)executes.2)TheGlobalInterpreterLock(GIL)managesthreadexecution,potentiallylimitingmul

Python: what are the key featuresPython: what are the key featuresMay 14, 2025 am 12:02 AM

Key features of Python include: 1. The syntax is concise and easy to understand, suitable for beginners; 2. Dynamic type system, improving development speed; 3. Rich standard library, supporting multiple tasks; 4. Strong community and ecosystem, providing extensive support; 5. Interpretation, suitable for scripting and rapid prototyping; 6. Multi-paradigm support, suitable for various programming styles.

Python: compiler or Interpreter?Python: compiler or Interpreter?May 13, 2025 am 12:10 AM

Python is an interpreted language, but it also includes the compilation process. 1) Python code is first compiled into bytecode. 2) Bytecode is interpreted and executed by Python virtual machine. 3) This hybrid mechanism makes Python both flexible and efficient, but not as fast as a fully compiled language.

Python For Loop vs While Loop: When to Use Which?Python For Loop vs While Loop: When to Use Which?May 13, 2025 am 12:07 AM

Useaforloopwheniteratingoverasequenceorforaspecificnumberoftimes;useawhileloopwhencontinuinguntilaconditionismet.Forloopsareidealforknownsequences,whilewhileloopssuitsituationswithundeterminediterations.

Python loops: The most common errorsPython loops: The most common errorsMay 13, 2025 am 12:07 AM

Pythonloopscanleadtoerrorslikeinfiniteloops,modifyinglistsduringiteration,off-by-oneerrors,zero-indexingissues,andnestedloopinefficiencies.Toavoidthese:1)Use'i

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.