PYTHON LIST SHALLOW COPY
PYTHON LIST SHALLOW COPY INTRODUCTION There are two types of copy operations are available in Python. In this article we will discuss on SHALLOW copy operations. Shallow copy operation represents that if we change or modify any of the list then the other list will also be impacted. There are several ways we can create …