ZetCode

Python Static Methods

last modified February 25, 2025

Static methods in Python are methods that belong to a class rather than an instance of the class. They do not require access to the instance or class and are defined using the @staticmethod decorator. Static methods are commonly used for utility functions, helper methods, and operations that do not depend on instance or class state. This tutorial covers the creation, usage, and practical examples of static methods in Python.

Static methods are methods that are bound to a class rather than its instances. They do not take a self or cls parameter, meaning they cannot access or modify instance or class state. Static methods are defined using the @staticmethod decorator and are typically used for utility functions or operations that are logically related to the class but do not depend on its state.

Creating a Static Method

This example demonstrates how to create and use a static method in Python.

basic_static_method.py
class MathUtils:
    @staticmethod
    def add(x, y):
        return x + y

result = MathUtils.add(10, 20)
print(result)  # Output: 30

The add method is a static method defined using the @staticmethod decorator. It does not require an instance of the class to be called and can be accessed directly using the class name.

Static Methods in Utility Classes

This example demonstrates how static methods are commonly used in utility classes.

utility_class.py
class StringUtils:
    @staticmethod
    def is_palindrome(s):
        return s == s[::-1]

    @staticmethod
    def reverse(s):
        return s[::-1]

print(StringUtils.is_palindrome("racecar"))  # Output: True
print(StringUtils.reverse("hello"))         # Output: olleh

Static methods are often used in utility classes to group related functions. In this example, the StringUtils class contains static methods for checking if a string is a palindrome and reversing a string.

Static Methods in Class Hierarchies

This example demonstrates how static methods can be used in class hierarchies.

class_hierarchy.py
class Animal:
    @staticmethod
    def make_sound():
        return "Generic animal sound"

class Dog(Animal):
    @staticmethod
    def make_sound():
        return "Woof!"

class Cat(Animal):
    @staticmethod
    def make_sound():
        return "Meow!"

print(Animal.make_sound())  # Output: Generic animal sound
print(Dog.make_sound())     # Output: Woof!
print(Cat.make_sound())     # Output: Meow!

Static methods can be overridden in subclasses, allowing for polymorphic behavior. In this example, the make_sound method is overridden in the Dog and Cat subclasses.

Static Methods for Factory Functions

This example demonstrates how static methods can be used as factory functions.

factory_method.py
class Point:
    def __init__(self, x, y):
        self.x = x
        self.y = y

    @staticmethod
    def from_tuple(coords):
        return Point(coords[0], coords[1])

    def __str__(self):
        return f"Point({self.x}, {self.y})"

p = Point.from_tuple((10, 20))
print(p)  # Output: Point(10, 20)

Static methods can be used as factory functions to create instances of a class. In this example, the from_tuple method creates a Point object from a tuple of coordinates.

Static Methods for Data Validation

This example demonstrates how static methods can be used for data validation.

data_validation.py
class User:
    def __init__(self, username, email):
        self.username = username
        self.email = email

    @staticmethod
    def is_valid_email(email):
        return "@" in email

    @classmethod
    def create_user(cls, username, email):
        if not cls.is_valid_email(email):
            raise ValueError("Invalid email address")
        return cls(username, email)

user = User.create_user("alice", "alice@example.com")
print(user.email)  # Output: alice@example.com

# user = User.create_user("bob", "bobexample.com")  # Raises ValueError

Static methods can be used for data validation before creating an instance of a class. In this example, the is_valid_email method checks if an email address is valid before creating a User object.

Best Practices for Using Static Methods

Source

Python Static Methods Documentation

In this article, we have explored Python static methods and demonstrated their usage in common scenarios through practical examples.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all Python tutorials.