In case
x = 0.898558 #float with zero prefix
I tried
from decimal import Decimal
x = 0.898558
print(Decimal(x))
Output:
0.898557999999999967855046634213067591190338134765625
I think i can do something and i tried
x = 0.898558
print('%.2f' % x)
Ouput:
0.89
How i can remove the 0
digit,i want something like this 89