I have an array array([0.79836512, 0.79700273, 0.82697546, 0.82016349, 0.79087192], dtype=float32)
and I want to keep the first two decimal points without round. So, I need an array like that,
array([0.79, 0.79, 0.82, 0.82, 0.79], dtype=float32)
.
Is it possible to do this with python
?
Thanks