I have a numpy.ndarray of the following structure:
   array([[ 7963.92759169, -2931.3518914 ,  3360.79428745],
   [ 7964.28495515, -2930.99452794,  3361.15165092],
   [ 7965.60367246, -2929.67581063,  3362.47036823]])
I am trying to limit the digits after decimal to 2 with the below code:
for (label, score) in zip(lables, scoring_fn):
   print("[INFO] {}: {:.2f}".format(label, float(score)))
With this, I get the error "TypeError: unsupported format string passed to numpy.ndarray.format". Could anyone suggest on how to correct this error?

