Round function in oracle and Pandas are giving different values. Is there a way to make them same apart from writing custom function.
select round(23.685,2) from dual; ---23.69
Pandas round function code :
Sample = {'Value': [23.685]}
df = pd.DataFrame(Sample, columns= ['Value'])
df.round(2) --23.68