This function returns the floor value of the input array elements. The floor of a number x is i if i is the largest integer such that, i<=x.
numpy.floor(array)
An array containing the floor values is returned.
import numpy as np
arr = [0.23, 0.09, 1.2, 1.24, 9.99]
print("Input array:",arr)
r_arr = np.floor(arr)
print("Output array:",r_arr)
arr2 = [145.23, 0.12, 12.34, 123]
r_arr2=np.floor(arr2)
print("Input array:",arr2)
print("Output array:",r_arr2)Output:
