Table of Contents

Sqr or Sqrt (Function)

Format

sqr ( numeric_expression )
sqrt ( numeric_expression )

returns float_expression

Description

Returns the square root of the numeric_expression.

Example

print sqr(2)
print sqrt(10)

will print

1.414214
3.162278

See Also

2016/01/01 22:42

History

0.9.6.51New To Version