w3resource

Python: Create a shallow copy of a given list

Python module: Exercise-1 with Solution

Write a Python program to create a shallow copy of a given list. Use copy.copy

Sample Solution:

Python Code:

import copy
nums_x = [1, [2, 3, 4]]
print("Original list: ", nums_x)
nums_y = copy.copy(nums_x)
print("\nCopy of the said list:")
print(nums_y)
print("\nChange the value of an element of the original list:")
nums_x[1][1] = 10
print(nums_x)
print("\nSecond list:")
print(nums_y)
nums =  [[1], [2]]
nums_copy = copy.copy(nums)
print("\nOriginal list:")
print(nums)
print("\nCopy of the said list:")
print(nums_copy)
print("\nChange the value of an element of the original list:")
nums[0][0] = 0
print("\nFirst list:")
print(nums)
print("\nSecond list:")
print(nums_copy)

Sample Output:

Original list:  [1, [2, 3, 4]]

Copy of the said list:
[1, [2, 3, 4]]

Change the value of an element of the original list:
[1, [2, 10, 4]]

Second list:
[1, [2, 10, 4]]

Original list:
[[1], [2]]

Copy of the said list:
[[1], [2]]

Change the value of an element of the original list:

First list:
[[0], [2]]

Second list:
[[0], [2]]

Flowchart:

Flowchart: Create a shallow copy of a given list.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Python module Exercises Home.
Next: Write a Python program to create a deep copy of a given list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/modules/python-module-copy-exercise-1.php