ABS returns the absolute value of the parameter
>>> ABS ( -3)3
All to iterate over whether each element of an object is true
>>> All ('nidaye') True>>> All ([1, 0]) False
Any to iterate over whether the object has a true element
>>> any ('nidaye') True>>> any ([1, 0]) True
ASCII returns a String representing the object
>>> ASCII ([1, 0])'[1, 0]'
Bin returns binary notation
>>> Bin (2)'0b10'>>> bin (4)'0b100 '
ByteArray
bytes
Whether the callable can be called (Personal Understanding, plus () no error)
>>> Callable (ABS) True>>> a = 0>>> callable (a) False
CHR passes the parameter as an index, returning the value corresponding to the index in the ASCII table
>>> chr'2' >>> chr'1 '>>> chr'X '
Compile to compile strings into byte code objects, it doesn't feel good.
>>> code = Compile ('print (666)' 'exec' )>>> code"", line 1>
Complex returns the plural form (it is estimated that many people do not use it for a lifetime)
Delattr Deleting a property of an object
Divmod returns a tuple in which the first element of the tuple is the quotient of both, and the second element is the remainder of the two.
>>> Divmod (5, 2) (2, 1)
Enumerate
Python built-in functions