Login
Remember
Register
Ask a Question
What is the output of print(np.array([1,2,3]) * np.array([[1],[2],[3]]) )?
0
votes
asked
Jan 28, 2020
in
Data Handling
by
rahuljain1
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]]
#print-output
DataHandling-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 28, 2020
by
SakshiSharma
[[123] [2 4 6] [3 6 9]]
...