The Secret Life of Python: The Dangerous Reflection
SMRTR summary
Python's assignment operator creates aliases, not copies, so modifying one list affects both variables. Create independent copies using slicing, copy() method, or list() constructor.
SMRTR provides this summary for quick context. The original article belongs to Dev.to.
Read the original article