i am trying to do this
consider
a=[[(34,5),(34,6)],[(35,5),(35,6)]]
b=[(36,5),(36,6)]
i want to put elements of b in a so i do
a.append(b)
now if i do
b.pop()
why does it effect a?
a ends up being `a=[[(34,5),(34,6)],[(35,5),(35,6)],[(36,5)]]` WHY??
is there a way around it??
i don't think i had this trouble in C++