For working professionals
For fresh graduates
More
13. Print In Python
15. Python for Loop
19. Break in Python
23. Float in Python
25. List in Python
27. Tuples in Python
29. Set in Python
53. Python Modules
57. Python Packages
59. Class in Python
61. Object in Python
73. JSON Python
79. Python Threading
84. Map in Python
85. Filter in Python
86. Eval in Python
96. Sort in Python
101. Datetime Python
103. 2D Array in Python
104. Abs in Python
105. Advantages of Python
107. Append in Python
110. Assert in Python
113. Bool in Python
115. chr in Python
118. Count in python
119. Counter in Python
121. Datetime in Python
122. Extend in Python
123. F-string in Python
125. Format in Python
131. Index in Python
132. Interface in Python
134. Isalpha in Python
136. Iterator in Python
137. Join in Python
140. Literals in Python
141. Matplotlib
144. Modulus in Python
147. OpenCV Python
149. ord in Python
150. Palindrome in Python
151. Pass in Python
156. Python Arrays
158. Python Frameworks
160. Python IDE
164. Python PIP
165. Python Seaborn
166. Python Slicing
168. Queue in Python
169. Replace in Python
173. Stack in Python
174. scikit-learn
175. Selenium with Python
176. Self in Python
177. Sleep in Python
179. Split in Python
184. Strip in Python
185. Subprocess in Python
186. Substring in Python
195. What is Pygame
197. XOR in Python
198. Yield in Python
199. Zip in Python
Why can’t you directly create an object from some classes in Python—even when they look complete?That’s Python’s way of saying: this is an abstract class—finish it first.
An abstract class in Python is like a blueprint. You define the structure, but leave the implementation to its child classes. It’s Python’s way of enforcing a design without writing full code. If you’ve ever wondered what is abstract class in Python, or how it compares to interfaces, you’re in the right place.
In this blog, you’ll learn the role of abstract base classes in Python, how they differ from regular classes, and where they fit into real-world OOP (Object-Oriented Programming). We'll also break down the difference between abstract class and interface in Python, and show simple, clear abstract class examples in Python to solidify your understanding.
By the end, you’ll know how to use abstract class and interface in Python effectively—and where to apply them. Want to deepen your Python knowledge? Our Data Science Courses and Machine Learning Courses help you master these concepts in action.
An abstract class in Python is a class that cannot be instantiated directly. It is used to define a common structure or template for other classes.
Think of it as a blueprint—you define what methods must exist, but not how they work. Any class that inherits from it must implement those methods.
Python provides this through the abc module (abc stands for Abstract Base Class)
Let’s take an example to get a better understanding.
from abc import ABC, abstractmethod
class Animal(ABC):
@abstractmethod
def sound(self):
pass
class Dog(Animal):
def sound(self):
return "Bark"
class Cat(Animal):
def sound(self):
return "Meow"
# animal = Animal() ❌ This will raise an error
dog = Dog()
print(dog.sound())
Output:
Bark
In Python, abstract base classes (ABCs) are used to define common methods that must be implemented in child classes. But why would you use abstract class in Python?
The key reason is that it provides a clear structure and ensures that all derived classes have the required methods, making your code more consistent and easier to maintain.
Without abstract base classes, you may end up with subclasses that don’t implement all necessary methods or behave inconsistently. An abstract method in Python ensures that any class inheriting from the abstract class must provide an implementation for that method, promoting code integrity.
This approach is essential when building complex systems where consistency across subclasses is important.
Looking to bridge the gap between Python practice and actual ML applications? A formal Data Science and Machine Learning course can help you apply these skills to real datasets and industry workflows.
Abstract Base Classes (ABCs) ensure that a base class defines methods that any subclass must implement.
Let’s take a look at an example:
from abc import ABC, abstractmethod
# Create an abstract base class
class Shape(ABC):
@abstractmethod
def area(self):
pass
@abstractmethod
def perimeter(self):
pass
# Create a class inheriting from Shape
class Rectangle(Shape):
def __init__(self, width, height):
self.width = width
self.height = height
# Implement the abstract methods
def area(self):
return self.width * self.height
def perimeter(self):
return 2 * (self.width + self.height)
# Create a Rectangle object
rect = Rectangle(5, 10)
# Output the area and perimeter
print(f"Area of Rectangle: {rect.area()}")
print(f"Perimeter of Rectangle: {rect.perimeter()}")
Output:
Area of Rectangle: 50
Perimeter of Rectangle: 30
Explanation:
The Shape class is defined as an abstract class by inheriting from ABC. The area() and perimeter() methods are abstract methods because they are decorated with @abstractmethod. These methods have no implementation in the base class.
The Rectangle class inherits from Shape. It is required to implement the area() and perimeter() methods, as defined by the abstract class. This ensures that any class inheriting from Shape will have these essential methods.
We create an instance of Rectangle with width 5 and height 10. Since Rectangle has implemented the required abstract methods, we can successfully instantiate it and call the methods.
The program outputs the area (50) and perimeter (30) of the rectangle, as expected.
Why Is This Important?
Also Read: Abstract Class in Java and Methods [With Examples]
In Python, abstract properties allow you to define properties in an abstract class that any subclass must implement. Like abstract methods, abstract properties are defined without implementation in the base class, but they must be given concrete implementations in the derived classes.
Abstract properties provide a way to enforce a consistent structure in your classes.
Let’s look at an example:
from abc import ABC, abstractmethod
# Create an abstract class
class Animal(ABC):
@property
@abstractmethod
def sound(self):
pass
# Create a subclass of Animal
class Dog(Animal):
def __init__(self, name):
self._name = name
# Implement the abstract property
@property
def sound(self):
return "Bark"
# Create another subclass of Animal
class Cat(Animal):
def __init__(self, name):
self._name = name
# Implement the abstract property
@property
def sound(self):
return "Meow"
# Instantiate Dog and Cat
dog = Dog("Buddy")
cat = Cat("Whiskers")
# Output the sounds
print(f"The sound of {dog._name} is: {dog.sound}")
print(f"The sound of {cat._name} is: {cat.sound}")
Output:
The sound of Buddy is: Bark
The sound of Whiskers is: Meow
Explanation:
Why Use Abstract Properties?
In Python, abstract base classes (ABCs) can also contain concrete methods—methods that are completely implemented in the abstract class itself.
The presence of concrete methods in an abstract class allows for a blend of enforced structure and reusable code.
Let’s look at an example:
from abc import ABC, abstractmethod
# Create an abstract class with both abstract and concrete methods
class Animal(ABC):
@abstractmethod
def sound(self):
pass
# Concrete method
def describe(self):
return "This is an animal."
# Create a subclass of Animal
class Dog(Animal):
def __init__(self, name):
self._name = name
# Implement the abstract method
def sound(self):
return "Bark"
# Create another subclass of Animal
class Cat(Animal):
def __init__(self, name):
self._name = name
# Implement the abstract method
def sound(self):
return "Meow"
# Instantiate Dog and Cat
dog = Dog("Buddy")
cat = Cat("Whiskers")
# Output the sounds and descriptions
print(f"The sound of {dog._name} is: {dog.sound()}")
print(dog.describe()) # Using the concrete method from Animal
print(f"The sound of {cat._name} is: {cat.sound()}")
print(cat.describe()) # Using the concrete method from Animal
Output:
The sound of Buddy is: Bark
This is an animal.
The sound of Whiskers is: Meow
This is an animal.
Explanation:
Why Use Concrete Methods in Abstract Classes?
In Python, an abstract class cannot be instantiated directly. Attempting to do so will result in a TypeError. This behavior exists because abstract classes are designed to be inherited by other classes, not used as stand-alone objects. Abstract classes provide a blueprint for subclasses, enforcing the implementation of abstract methods and properties. This ensures that derived classes are consistent and complete.
Let’s look at an example:
from abc import ABC, abstractmethod
# Define an abstract base class
class Animal(ABC):
@abstractmethod
def sound(self):
pass
# Try to instantiate the abstract class
try:
animal = Animal() # This will raise a TypeError
except TypeError as e:
print(f"Error: {e}")
Output:
Error: Can't instantiate abstract class Animal with abstract methods sound
Explanation:
In order to work with abstract classes, you need to define a subclass that implements all abstract methods. This subclass can then be instantiated.
# Create a subclass of Animal
class Dog(Animal):
def sound(self):
return "Bark"
# Instantiate the Dog class
dog = Dog()
print(dog.sound())
Output:
Bark
Explanation:
Why Can’t We Instantiate an Abstract Class?
Feature | Abstract Class | Interface |
Definition | A class that cannot be instantiated and may contain both abstract and concrete methods. | A contract specifying methods that implementing classes must provide; typically implemented using zope.interface or abc modules. |
Implementation | Can provide default method implementations; subclasses can override them. | Cannot provide method implementations; all methods are abstract by definition. |
Multiple Inheritance | Supports multiple inheritance; a class can inherit from multiple abstract classes. | Supports multiple inheritance; a class can implement multiple interfaces. |
Purpose | Used to define a common interface with shared behavior and attributes for related classes. | Used to define a contract that unrelated classes can implement, ensuring they provide specific methods. |
Instantiation | Cannot be instantiated directly; must be subclassed. | Cannot be instantiated directly; serves as a blueprint for implementing classes. |
Use Case | Ideal for creating a common base class with shared functionality. | Ideal for defining capabilities that can be shared across different class hierarchies. |
Want to know more? Explore our blog on: Abstract Class and Interface.
Now, it’s time for some practice and test your learning about Abstract class in Python
1. Which module is used to define an abstract class in Python?
a) abc
b) abstract
c) interface
d) baseclass
2. What does ABC stand for in the context of Python OOP?
a) Abstract Base Class
b) Abstract Built-in Class
c) Absolute Base Class
d) Advanced Base Component
3. What happens if you instantiate an abstract class with abstract methods?
a) Runs normally
b) Syntax warning
c) Raises TypeError
d) Returns None
4. Which decorator is used to define an abstract method?
a) @classmethod
b) @staticmethod
c) @abstractmethod
d) @method
5. What is the purpose of an abstract class in Python?
a) It provides memory optimization
b) It allows defining methods without implementation
c) It defines static methods only
d) It prevents inheritance
6. Which of the following is true about abstract methods in Python?
a) They must be defined in all subclasses
b) They can be left unimplemented
c) They require the super() call
d) They can’t be overridden
7. How do abstract classes differ from interfaces in Python?
a) Interfaces allow constructors
b) Abstract classes can have implemented methods
c) Interfaces support private methods
d) Interfaces allow multiple inheritance only
8. What will happen if a subclass does not implement all abstract methods of its base class?
a) It works with default behavior
b) It raises NotImplementedError
c) It remains abstract and can't be instantiated
d) It compiles but fails at runtime
9. You define an abstract class with one method marked with @abstractmethod. Your subclass overrides it. What will happen if you forget to use the decorator?
a) Subclass won't work
b) It behaves like a normal method
c) Python raises an error
d) Abstract class turns into an interface
10. You want to create a template class with common logic and force specific behavior in subclasses. What should you use?
a) Abstract class
b) Regular class
c) Static method
d) Class method
An abstract class in Python is a class that cannot be instantiated directly. It can include abstract methods that any subclass must implement.
An abstract method in Python is a method declared in an abstract class that does not have an implementation. Subclasses must implement this method.
No, you cannot instantiate an abstract class in Python example directly. It must be inherited, and its abstract methods must be implemented before instantiation.
Abstract classes in Python help enforce a structure for subclasses, ensuring that all required methods are implemented making code more organized and maintainable.
If a subclass doesn't implement the abstract methods, Python will raise a TypeError, indicating that the subclass must define all abstract methods from its abstract class.
Yes, abstract classes can have concrete methods, which are fully implemented methods that can be used by subclasses, in addition to abstract methods that must be overridden.
Python treats abstract classes as a blueprint for other classes. They cannot be instantiated on their own and must be extended by other classes that provide concrete implementations.
While both define a contract for subclasses, an abstract class in Python example can include method implementations, whereas an interface only specifies methods to be implemented with no implementation.
Yes, an abstract class in Python example can have abstract properties, which must be implemented by the subclass, just like abstract methods.
Yes, an abstract class can inherit from multiple interfaces or abstract classes in Python, allowing it to enforce the implementation of multiple sets of methods.
You can define a constructor in an abstract class in Python example like any other class. However, the constructor cannot be used directly until the class is subclassed and instantiated.
Take our Free Quiz on Python
Answer quick questions and assess your Python knowledge
Author|900 articles published
Previous
Next
Talk to our experts. We are available 7 days a week, 9 AM to 12 AM (midnight)
Indian Nationals
1800 210 2020
Foreign Nationals
+918068792934
1.The above statistics depend on various factors and individual results may vary. Past performance is no guarantee of future results.
2.The student assumes full responsibility for all expenses associated with visas, travel, & related costs. upGrad does not provide any a.