This works
numpy.multiply(13, 3)
This doesn't
numpy.multiply(x1=13, x2=3)
It raises an invalid number of arguments
exception. Can someone explain why please. I tried to follow the documentation but got a bit lost with the /
, and *
characters which are included in the argument list. If you could explain the meaning of these too it would be appreciated.