In python 2.7
In [83]: (2.01909 * 100000).__str__()
Out[83]: '201909.0'
In python 3.6
In [47]: (2.01909 * 100000).__str__()
Out[47]: '201908.99999999997'
Is this expected or known difference?
Can we make them consistent?
In python 2.7
In [83]: (2.01909 * 100000).__str__()
Out[83]: '201909.0'
In python 3.6
In [47]: (2.01909 * 100000).__str__()
Out[47]: '201908.99999999997'
Is this expected or known difference?
Can we make them consistent?