Python issubclass()

Anonymous contributor's avatar
Anonymous contributor
Published Mar 27, 2023
Contribute to Docs

The issubclass() function returns a boolean indicating whether a given class is a subclass of one or more classes.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
    • With Certificate
    • Beginner Friendly.
      24 hours

Syntax

issubclass(class, candidateClasses)

issubclass() take two parameters:

  • class: A validly defined class.
  • candidateClasses: A single class or type, or a tuple of classes and types.

If class is a subclass of candidateClasses (direct or indirect), True is returned, False otherwise.

Example

The following example uses the issubclass() function to confirm whether myInfo is a subclass of the myAge class:

class myAge:
age = 36
class myInfo(myAge):
name = "Homer"
age = myAge
print(issubclass(myInfo, myAge))

This will print the following output:

True

Codebyte Example

In the following example, the issubclass() function checks the relationship between the Car and Color classes. While Color is a subclass of Car, the reverse is not true:

Code
Output

All contributors

Contribute to Docs

Learn Python on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
    • With Certificate
    • Beginner Friendly.
      24 hours