Q:

Write a NumPy program to take values from a source array and put them at specified indices of another array

0

Write a NumPy program to take values from a source array and put them at specified indices of another array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.array([10, 10, 20, 30, 30], float)
print(x)
print("Put 0 and 40 in first and fifth position of the above array")
y = np.array([0, 40, 60], float) 
x.put([0, 4], y)
print("Array x, after putting two values:")
print(x)

Sample Output:

[ 10.  10.  20.  30.  30.]                                                             
Put 0 and 40 in first and fifth position of the above array                            
Array x after put two values:                                                          
[  0.  10.  20.  30.  40.]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now