Get startedGet started for free

Build a class with inheritance

You're now working with some data from a nursery on plant sales and you're building out an object-oriented program to help you handle the different types of plants that are for sale. You've already built out a Tree class, but in the process realized that you should probably make use of class inheritance and a parent Plant class. In the following exercise, you will need to build out the parent Plant class and rewrite the Tree class to inherit from it.

This exercise is part of the course

Programming Paradigm Concepts

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Define the Plant class
class ____():
    def __init__(____, price):
        self.price = ____
Edit and Run Code