Look at the following class definitions:
class Plant: def __init__ (self, plant_type): self. plant_type = plant_type
def message(self): print("I'm a plant.")class Tree(Plant): def __init__ (self): Plant. __init__ (self, 'tree')
def message(self): print("I'm a tree.")Given these class definitions, what will the following statements display?
p = Plant('sapling')t = Tree()p.message()t.message()
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.