stdmath

from Main Module

min()

Return the lowest number

var Lowest = min(5, 10) # The result is 5 because 5 is less than 10.

Python

return min(a, b)

max()

Return the largest number

var Largest = max(6, 5) # 5 is greater than 6, so the result is 6

Python

return max(a, b)

mod()

Prints the result of the modulo operation

var Result = mod(5, 2) # The result is 1

Python

return a % b

Last updated