All builtin functions are described here.
Returns the absolute value of val
Returns true if all items in an iterable are value True
Returns true if any of the items in an iterable are value True
Returns the binary equivalent of the given integer
Returns the bytearray of the bytes array passed in
Similar to bytearray()
but for a single byte
Returns True if the object appears callable
Returns a character from an integer
Returns a classmethod for the passed function
Creates a complex number from the passed variables.
You can also use the textual notation
'a+bj'
, e.g.'1+2j'
Deletes attribute from the object.
Returns a list of valid attributes of the object. If no parameter is passed, it will return all created objects.
Divides and mods the two values. Similar to (x / y, x % y)
Returns a tuple (q, r)
of the two paramters, with quotient q
and remainder r