How to use decorators in Python
You may have already found a decorator in some Python code. For example, the following is commonly used to create static methods within a class:
class Person:
@staticmethod
def some_static_method():
pass
But what does really do a dec...
luiz.hashnode.dev4 min read