Why is it adding 2 here? What can I do to fix that?
>>> a=4.637421298803135e+16
>>> print("{0:.0f}".format(round(a,0)))
46374212988031352
>>> a=46374212988031350
>>> print("{0:.0f}".format(round(a,0)))
46374212988031352
Why is it adding 2 here? What can I do to fix that?
>>> a=4.637421298803135e+16
>>> print("{0:.0f}".format(round(a,0)))
46374212988031352
>>> a=46374212988031350
>>> print("{0:.0f}".format(round(a,0)))
46374212988031352