I have this number:
value='0.00000036'
as string
I want to calculate how much is value*2 or value+value (0.00000072
) and apparently it is not an easy task.
I tried to use :
decimal.Decimal(value)
and it gets me with :
Decimal('3.6E-7')
Everything works fine when i'm using higher number (0.0000036
) but it's useless to me.