What is the role of the @staticmethod decorator in Python?

What is the role of the @staticmethod decorator in Python? Correct Answer To make a method callable without an instance

The @staticmethod decorator allows a method to be called without creating an instance of the class.

Related Questions

What is the purpose of the @staticmethod decorator compared to the @classmethod decorator?
What is the purpose of the @classmethod decorator compared to the @staticmethod decorator?
What is the purpose of the @staticmethod decorator in Python classes?
What is the primary use of the @staticmethod decorator?
How does the @classmethod decorator differ from @staticmethod?
What is the purpose of the @staticmethod decorator in advanced OOP?