how to convert exponent to full number

how to convert  5.7e-007  to  0.00000057

Use string.format( “%.8f”, 5.7e-007 ) 

Use string.format( “%.8f”, 5.7e-007 )