What do these mean of: @classmethod and @staticmethod Prakash nidhi Verma143719-Jul-2018pythonpython-3.4 python Updated on 17-Sep-2020
Prakash nidhi Verma
19-Jul-2018These are decorators. A decorator is a special kind of function that either takes a function and returns a function, or takes a class and returns a class. The @ symbol is just syntactic sugar that easy in read.