exp ( numeric_expression )
returns float_expression
Returns the base of the natural logarithm e (approx: 2.718282) raised to the specified power. This is the inverse of the Log function.
print exp(1) print exp(log(10))
will print
2.718282 10
0.9.6.51 | New To Version |