Python Built in Functions
Python Built in Functions
Function Description
abs() Returns the absolute value of a number
delattr() Deletes the specified attribute (property or method) from the specified
object
divmod() Returns the quotient and the remainder when argument1 is divided by
argument2
enumerate() Takes a collection (e.g. a tuple) and returns it as an enumerate object
hasattr() Returns True if the specified object has the specified attribute
(property/method)