If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something  line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering.     What is python decorator  Understanding the concept  Multiple decorators on same function  class method decorator  Where can we use decorators     What is python decorator  A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this  def decorator(your_func):     def replacement(your_func_args):         #do some other work     return replacement  @decorator your_func(your_func_args):     #your_func code   Now when your_func  gets called then...
The stuff is very nice and helpful! Thanks to providing this info.
ReplyDeletehttps://blog.mindvalley.com/sensory-cortex/