declaring a class as static in python code example
Example 1: static class python
#To create a static method, just add "@staticmethod" before defining it.
>>>class Calculator:
# create static method
@staticmethod
def multiplyNums(x, y):
return x * y
>>>print('Product:', Calculator.multiplyNums(15, 110))
Product:1650
Example 2: python class static variable
>>> class MyClass:
... i = 3
...
>>> MyClass.i
3