lso commentary to explain what the program does for a better understanding. Thank you

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please use your own code and please also commentary to explain what the program does for a better understanding. Thank you 

python
create a python class called Animal that define two attributes Type and Age and the following methods:
_init__ initializes the attributes Age which is mandatory, and Type which is optional when the
instanciation of an object of type animal.
Methods set_type and set_age to assign value to type and age, respectively.
Methods get_type and get_age to return the value of type and age, respectively.
Create a class called Felin class that inherits the class parent Animal. It redefines the method __init__
reusing the _init__ method of Animal, and also starting the speed attribute.
Define the methods set_speed and get_speed to assign/return the value of the speed.
Set the method _str__ to display the object of type Felin as shown in the example.
--
Define the method comparespeed of the class Felin. This method displays the fastest of two
cats. comparespeed can use any method of the class Felin or of the parent class Animal but it cannot
manipulate any attributes directly such as self.age, or self.type, or self.speed.
Example:
>>> f1 = Felin(4)
>>> f1.set_type("Lion")
>>> f1.set_vitesse(20)
>>> print(f1)
Felin:Lion - 4 - 20km/h
>>> f2 = Felin(5)
>>> f2.set_type("Jaguar")
>>> f2.set_vitesse(10)
>>> print(f2)
Felin:Jaguar - 5 - 10km/h
>>> f1.compareRapidite(f2)
the fastest cat is: Felin:Lion - 4 - 20km/h
Transcribed Image Text:python create a python class called Animal that define two attributes Type and Age and the following methods: _init__ initializes the attributes Age which is mandatory, and Type which is optional when the instanciation of an object of type animal. Methods set_type and set_age to assign value to type and age, respectively. Methods get_type and get_age to return the value of type and age, respectively. Create a class called Felin class that inherits the class parent Animal. It redefines the method __init__ reusing the _init__ method of Animal, and also starting the speed attribute. Define the methods set_speed and get_speed to assign/return the value of the speed. Set the method _str__ to display the object of type Felin as shown in the example. -- Define the method comparespeed of the class Felin. This method displays the fastest of two cats. comparespeed can use any method of the class Felin or of the parent class Animal but it cannot manipulate any attributes directly such as self.age, or self.type, or self.speed. Example: >>> f1 = Felin(4) >>> f1.set_type("Lion") >>> f1.set_vitesse(20) >>> print(f1) Felin:Lion - 4 - 20km/h >>> f2 = Felin(5) >>> f2.set_type("Jaguar") >>> f2.set_vitesse(10) >>> print(f2) Felin:Jaguar - 5 - 10km/h >>> f1.compareRapidite(f2) the fastest cat is: Felin:Lion - 4 - 20km/h
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Introduction to computer system
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education