We don't mention that lists support the `*` operator. ```python >>> [2, 3, 1]*5 [2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1] >>> ``` This is good to mention because numpy has a more intuitive/useful implemention of the `*` operators for arrays.
We don't mention that lists support the
*operator.This is good to mention because numpy has a more intuitive/useful implemention of the
*operators for arrays.