Get the float value and not the rounded integer value code example
Example 1: python round to dp
round(float_num, num_of_decimals)
Example 2: round to the nearest integer python
int(round(x))
round(float_num, num_of_decimals)
int(round(x))