Static Method in Classes

class MyClass:
    @staticmethod
    def my_static_method(arg1, arg2):
        # This method does not take a 'self' parameter
        # and can be called on the class itself, not on an instance
        return arg1 + arg2

# You can call the static method directly on the class, without creating an instance
result = MyClass.my_static_method(5, 10)
print(result)  # Output will be 15