ascii(object) As repr(), return a string containing a printable representation of an object, but escape the non-ASCII
len(s) Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple
class bool([x]) Return a Boolean value, i.e. one of True or False. x is converted using the
class bytes([source[, encoding[, errors]]]) Return a new “bytes” object, which is an immutable sequence of integers in the range
abs(x) Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is
bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python
globals() Return a dictionary representing the current global symbol table. This is always the dictionary of the current module
format(value[, format_spec]) Convert a value to a “formatted” representation, as controlled by format_spec
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) Print objects to the text stream file, separated
delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must
Page 3 of 7