运行下方代码段,输出的结果是( )。
import numpy
a = numpy.arange(5)
b = [3]
print(a*b)
15
[15]
[ 0 1 2 3 4]
[ 0 3 6 9 12]