Write a NumPy program to sum and compute the product of a NumPy array elements
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
import numpy as np
x = np.array([10, 20, 30], float)
print("Original array:")
print(x)
print("Sum of the array elements:")
print(x.sum())
print("Product of the array elements:")
print(x.prod())
Sample Output:
Original array: [ 10. 20. 30.] Sum of the array elements: 60.0 Product of the array elements: 6000.0
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال