max(iterable, *[, key, default]) max(arg1, arg2, *args[, key]) Return the largest item in an iterable or the largest
hex(x) Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for example:
any(iterable) Return True if any element of the iterable is true. If the iterable is empty, return False
sum(iterable[, start]) Sums start and the items of an iterable from left to right and returns the total. start
class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return
all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent
memoryview(obj) Return a “memory view” object created from the given argument. See
class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a
zip(*iterables) Make an iterator that aggregates elements from each of the iterables. Returns
class object Return a new featureless object. object is a base for all classes. It has the methods that are common
Page 6 of 7