Write a NumPy program to replace the negative values in a NumPy array with 0
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
import numpy as np
x = np.array([-1, -4, 0, 2, 3, 4, 5, -6])
print("Original array:")
print(x)
print("Replace the negative values of the said array with 0:")
x[x < 0] = 0
print(x)
Sample Output:
Original array: [-1 -4 0 2 3 4 5 -6] Replace the negative values of the said array with 0: [0 0 0 2 3 4 5 0]
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال