Feb-02-2024, 08:34 AM
hi
in the below code:
after running the below error is given:
what is the problem? also why in the implementation of the function in line 13, MethodTypes is used?
thanks
in the below code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
''' static method ''' class Math: @staticmethod def factorial(number): if number = = 0 : return 1 else : return number * MethodTypes.factorial(number - 1 ) factorial = MethodTypes.factorial( 5 ) print (factorial) |
Error:Traceback (most recent call last):
File "<string>", line 15, in <module>
NameError: name 'MethodTypes' is not defined
the code is in the address mentioned in the docstring.what is the problem? also why in the implementation of the function in line 13, MethodTypes is used?
thanks