Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python Modules, python special tricks, Python Built-in Methods, Python…
Python Modules
-
-
functools
Python functools module provides us various tools which allows and encourages us to write reusable code. Some of them are:
- Partial functions
- Updating Partial wrappers
- Total ordering
-
python special tricks
-
-
-
Dictionary Comprehension
-
: :
-
-
-
-
Python Built-in Methods
.
mics
-
-
-
-
-
.
object()
Return a new featureless object. object is a base for all classes. It has the methods that are common to all instances of Python classes. This function does not accept any arguments.
.
callable()
Return True if the object argument appears callable, False if not.
-
.
any()
`Return True if any element of the iterable is true. If the iterable is empty, return False.
.
exec()
This function supports dynamic execution of Python code. object must be either a string or a code object.
-
-
-
-
-
-
-
-
-
-
-