Question: USING PYTHON (OBJECT ORIENTED PROGRAMMING) Create a class called Cars. This class has two attributes to describe a car: car brand and price. Car brand
USING PYTHON (OBJECT ORIENTED PROGRAMMING)
Create a class called Cars. This class has two attributes to describe a car: car brand and price.
Car brand should have character values such as Honda, BMW, etc. Price should have numeric values such as 21000, 35000, etc. These are the prices for each brand. (You can either take these values from the user, or hard-code them. It is up to you ... whatever is easier).
The Cars class should also be able to show a cars name by using a method called ShowBrand.
The Cars class should also be able to show a cars price by using a method called ShowPrice.
Using the Cars class, create two car objects. Their information is listed below:
brand: Honda price: 21000
brand: BMW price: 35000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
