When we create a variable in Python and assign some data to it an object of the data gets created in memory and the variable points to it. So when we assign the same data value to another variable it references the same data. (Everything in Py is an ...