I\'m analyzing some Python code and I don\'t know what
pop = population[:]
means. Is it something like array lists in Java or like a bi-di
It creates a copy of the list, versus just assigning a new name for the already existing list.