float.py 96 B

12345
  1. import numpy as np
  2. def rounding(array, num):
  3. return list(np.around(np.array(array), num))