In this python numpy program, we will round off the elements in an array up to two digits.
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Round off the elements in an array up to two digits using np.round().
- Print the output.
import numpy as np
arr = np.array([12.202, 90.23120, 123.88, 23.202])
print(np.round(arr,2))
Output :
[ 12.2 90.23 123.88 23.2 ]