I just realized now that when I append a list to another list and I delete this appended list, the list also wont be in the other list. Makes maybe sense, because appending a list to somewhere else is just a reference. So when I'm using something like this:
B[:] = []
Then it will be gone from everywhere. How can I avoid this issue? Using copy? My problem is that I'm collecting lists in a list and at some point I'm adding this whole thing to another list - after that I would like to make the added list empty to use it to adding new data to it.