Question: Multilevel inheritance You've gotten your hands dirty performing both single and multiple inheritance. In this exercise, you'll implement multilevel inheritance by building a new version

Multilevel inheritance
You've gotten your hands dirty performing both single and multiple inheritance. In this exercise, you'll implement multilevel inheritance by building a new version of the Smartphone class.
To help you get started, the Computer and Tablet classes have been defined and provided below. It' important to note that Tablet inherits from the Computer class. Good luck!
class Computer: def __init__(self, brand): self.brand = brand def browse_internet(self): print(f"Using {self.brand}'s default internet browser.") class Tablet(Computer): def __init__(self, brand, apps): Computer.__init__(self, brand) self.apps = apps def uninstall_app(self, app): if app in self.apps: self.apps.remove(app)
Instructions
100 XP
Instructions
100 XP
Define a Smartphone class that inherits from Tablet, call the parent constructor, and define the phone_number instance-level attribute.
Create a send_text method that shares a text message with a recipient from the Smartphone's phone_number.
Instantiate a Smartphone object called personal_phone and call its .browse_internet() method; uninstall the Weather app, and send the message Time for a new mission! to Chuck, via text.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!