+1 vote
in Data Handling by

What is the output of print(np.array([1,2,3]) * np.array([1,2,3]) )?

[1 2 3 1 2 3]

[1 4 9] 

[14 14 14]

[14]

1 Answer

0 votes
by
[1 4 9]

Related questions

+1 vote
asked Jul 4, 2021 in NumPy by sharadyadav1986
0 votes
asked May 27, 2019 in Data Handling by tempuser
...