Decorators in Python
What are decorators in Python?
Decorators are used to add some design pattern to a function without changing its structure. Decorators generally are defined before...
Read More →Decorators and Generators in Python
Python implementation Generators Python generators are functions that are similar to normal functions, but use yield statements instead of return...
Read More →