How can I Write a class named Pet , which should have the following data attributes: _ _name (for the name of a pet) _ _animal_type (for the type of animal that a pet is. Example values are ‘Dog’, ‘Cat’, and ‘Bird’) _ _age (for the pet’s age)
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
How can I Write a class named Pet , which should have the following
data attributes:
_ _name (for the name of a pet)
_ _animal_type (for the type of animal that a pet is.
Example values are ‘Dog’, ‘Cat’, and ‘Bird’)
_ _age (for the pet’s age)
The Pet class should have an _ _init_ _ method that
creates these attributes. It should also have the following
methods:
set_name
This method assigns a value to the _ _name field.
set_animal_type
This method assigns a value to the _ _animal_type field.
set_age
This method assigns a value to the _ _age field.
get_name
This method returns the value of the _ _ name field.
get_animal_type
This method returns the value of the _ _animal_type field.
get_age
This method returns the value of the _ _age field.
Once you have written the class, write a program that creates
an object of the class and prompts the user to enter the
name, type, and age of his or her pet. This data should be
stored as the object’s attributes. Use the object’s accessor
methods to retrieve the pet’s name, type, and age and
display this data on the screen.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images