Function: abs(x)
Description: Returns the absolute value of a number x.
Function: all(iterable)
Description: Returns True if all elements in the iterable are true (or if the iterable is empty).
Function: any(iterable)
Description: Returns True if any element in the iterable is true. Returns False if the iterable is empty.
Function: ascii(object)
Description: Returns a string containing a printable representation of an object, escaping non-ASCII characters.
Function: bin(x)
Description: Converts an integer x to a binary string prefixed with “0b”.
Function: bool(x)
Description: Converts a value x to a Boolean (True or False).
Function: breakpoint()
Description: Enters the debugger at the call site.
Function: bytearray(source)
Description: Returns a new array of bytes.
Function: bytes(source)
Description: Returns a new “bytes” object (immutable).
Function: callable(object)
Description: Returns True if the object appears callable (like a function), False otherwise.
Function: chr(i)
Description: Returns the string representing a character whose Unicode code point is the integer i.
Function: classmethod(function)
Description: Transforms a method into a class method.
Function: complex(real, imag)
Description: Creates a complex number.
Function: delattr(object, name)
Description: Deletes the named attribute from the object.
Function: dict(**kwargs)
Description: Creates a new dictionary.
Function: dir(object)
Description: Returns a list of valid attributes for the specified object.
Function: divmod(a, b)
Description: Returns a tuple containing the quotient and the remainder of (a / b).
Function: enumerate(iterable, start=0)
Description: Returns an enumerate object (iterator of tuples with count and value).
Function: filter(function, iterable)
Description: Constructs an iterator from elements of iterable for which function returns true.
Function: float(x)
Description: Converts a string or number x to a floating-point number.
Function: format(value, format_spec)
Description: Formats a value using a specified format specification.
Function: frozenset(iterable)
Description: Returns a new immutable frozenset object.
Function: getattr(object, name, default)
Description: Gets the value of a named attribute from an object
Function: globals()
Description: Returns a dictionary representing the current global symbol table.