help

The help function invokes Python's built-in help system. If no argument is passed, the function returns a welcome message explaining the use of the function and inviting us to enter the search text. If the argument is a text string, that string is searched for as the name of a module, function, class, method, keyword, or topic in the documentation, and available help is displayed.

Submitted by admin on Sat, 01/19/2019 - 20:56

round

The round function rounds a number to a precision given by the number of decimal places specified as an argument. If the number of decimal places is not specified, 0 is taken as the default value.

The returned value is rounded to the nearest multiple of 10 ^ (- number of decimal places). If two multiples are equally close, the even value is taken.

Submitted by admin on Sat, 01/19/2019 - 19:37

EXPON.DIST

The EXPON.DIST function returns the value of the exponential distribution corresponding to a number.

Submitted by admin on Thu, 01/17/2019 - 15:37

CROSSJOIN

The CROSSJOIN function returns a table made up of the Cartesian product of all the rows in all the tables included as arguments.

Submitted by admin on Thu, 01/17/2019 - 13:57