Functions
- abs(number)
Returns the absolute value of the given number.
- len(a)
Returns the size of the a object
- pow(x, y)
Returns the value of x to the power of y (x^y).
- print(arg1, *args)
Print the arguments on the standard output.
- round(number)
Returns the nearest integer, rounding away from zero in halfway cases.
- min(arg1, arg2, *args)
Returns the smallest element.
- max(arg1, arg2, *args)
Returns the biggest element.
- type(object)
Returns the object’s type.