In Python, there are broadly three kinds of copy.First using the assigment operator. Second, shallow copy and third, deep copy. In this article we shall dive deep into different kinds of copy that we have in Python. Using Assignment operator(=): When we copy a variable(list,dict),mutable type, The Python interpreter just refers to the same memory location using a different varriable
Continue reading