sign()

Learn how to use the sign() function to return the sign of the numeric expression.

Returns the sign of the numeric expression.

Syntax

sign(number)

Parameters

NameTypeRequiredDescription
numberreal✔️The number for which to return the sign.

Returns

The positive (+1), zero (0), or negative (-1) sign of the specified expression.

Examples

print s1 = sign(-42), s2 = sign(0), s3 = sign(11.2)

Output

s1s2s3
-101