# COPY ME INTO THE VISUALIZER # This is all application code a = [[1,2],[3,4],[5,6]] b = a[1:] # slice copies # Does not effect a b[0] = [7,8] print(b) print(a) # DOES effect a b[1][0] = 20 print(b) print(a)