In Python, how do you clone an object?
The assignment statement (= operator) in Python does not duplicate objects. Instead, it establishes a link between the existing object and the variable name. In Python, we must use the copy module to make multiple copies of an object.