Program to round off the elements in an array up to two digits

In this python numpy program, we will round off the elements in an array up to two digits.

Steps to solve the program
  1. Import the numpy library as np.
  2. Create an array using np.array().
  3. Round off the elements in an array up to two digits using np.round().
  4. 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 ]
				
			

calculate the tan angle of an array.

round off the elements in an array using the floor function.

Leave a Comment