What is the output of the following code ?
>>> s = [1, 2, 3] >>> s*3
[3, 6, 9]
[3, 8, 27]
[1, 2, 3, 1, 2, 3, 1, 2, 3]
Error
The * operator multiplies the list and creates a new list
Comment here: