In this example:
m = [100, 33, 234, 5] n = m m.append(89) print(n) # Output: [100, 33, 234, 5, 89]
How do I make it so n doesn\'
n