Python Example – Write a Python program to copy of a deque object and verify the shallow copying process

(Python Example for Citizen Data Scientist & Business Analyst)

 

Write a Python program to copy of a deque object and verify the shallow copying process.

 

Sample Solution:

Python Code:


import collections

tup1 = (1,3,5,7,9)
dq1 = collections.deque(tup1)
dq2 = dq1.copy()

print("Content of dq1:")
print(dq1)
print("dq2 id:")
print(id(dq1))
print("nContent of dq2:")
print(dq2)
print("dq2 id:")
print(id(dq2))
print("nChecking the first element of dq1 and dq2 are shallow copies:")
print(id(dq1[0]))
print(id(dq2[0]))

Sample Output:

Content of dq1:
deque([1, 3, 5, 7, 9])
dq2 id:
140706429557152

Content of dq2:
deque([1, 3, 5, 7, 9])
dq2 id:
140706406914152

Checking the first element of dq1 and dq2 are shallow copies:
11065888
11065888

 

Write a Python program to copy of a deque object and verify the shallow copying process

Sign up to get end-to-end “Learn By Coding” example.



Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.