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-dimensional array? Could appreciate some help, thanks.
|
|
It's a slicing, and what it does depends on the type of |
|||||||||||||||||||
|
|
It might also help to know that a list slice in general makes a copy of part of the list. E.g. |
|||||
|
|
It is a slice from the beginning of the sequence to the end, usually producing a shallow copy. (Well, it's more than that, but you don't need to care yet.) |
|||
|
|
|
well... this really depends on the context. Ultimately, it passes a Objects can do what they want with the slice. In the context of:
This will call
(although the former is probably more efficient because it doesn't have to look up the For most objects, this is a way to create a shallow copy of a portion of the sequence. Next:
Is a way to set the items (it calls and, I think you can probably guess what:
calls ;-). You can also pass different slices:
constructs
constructs |
|||||
|
|
It creates a copy of the list, versus just assigning a new name for the already existing list. |
|||
|
|