I have accessed tables stored in Access DB using python, pandas, pyobdc through the pd.read_sql_query command. The table has float values which are used for predictive value calculations and while reading these float values from the table, Python is not reading them exactly as they are but adding a few more digits at the end which results in the wrong predictive values.
For example, value in DB: 0.292244, value retrieved by Python and pandas: 0.29224375
They are giving me incorrect values because they are being used in an exponential function. I have used coerce_float parameter on and off but it doesn't make any changes. Please suggest a way to get it right.