0 votes
in Data Handling by
What is the output of print(np.array([1,2,3]) * np.array([[1],[2],[3]]) )?

[[123] [2 4 6] [3 6 9]]

[14]

throws error

[[14]]

1 Answer

0 votes
by
[[123] [2 4 6] [3 6 9]]
...