Question

Vehicle Inheritance USE PYTHON TO WRITE THE CODES. Create a Vehicles class that holds instances of...

Vehicle Inheritance

USE PYTHON TO WRITE THE CODES.

Create a Vehicles class that holds instances of cars; this class is completely separate from the Car class. In other words, the Car class does not inherit from the Vehicle class. Then assign three car instances to an instance of the Vehicle class.

Your output should look like this:

I have 3 cars:
The Mercedes is a black suv.
The BMW is a silver sedan.
The ferrari is a red supercar .
and they all have 4 wheels of course.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

class Vehical:

   def __init__(self, c1, c2,c3):
       print("I Have three Cars");
       print("the "+c1.name+" is a "+c1.color); #print name of the car and color in intit itself
       #while initializing object it print value
       print("the "+c2.name+" is a "+c2.color);
       print("the "+c3.name+" is a "+c3.color);
       print("and they all have 4 wheels of course.");


class Car:
   def __init__(self, name, color):
       self.name = name #assign name color here
       self.color = color
  
  
c1 = Car("Mercedes ", "black suv") #initializing object car
c2 = Car("BMW", "silver sedan")
c3 = Car("ferrari", "red supercar")

v=Vehical(c1,c2,c3) #pass to vehical custructor

output

I Have three Cars
the Mercedes is a black suv
the BMW is a silver sedan
the ferrari is a red supercar
and they all have 4 wheels of course.

Add a comment
Know the answer?
Add Answer to:
Vehicle Inheritance USE PYTHON TO WRITE THE CODES. Create a Vehicles class that holds instances of...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Python programming I need help with the following: Create a class Vehicle. The class should have...

    Python programming I need help with the following: Create a class Vehicle. The class should have name, weight, fuel, number of wheels and move attributes/methods. Create child class that are semi, car, sail boat and bicycle. Give the class the ability to have a constructor that sets the name. Have the other attributes hard coded to suit the vehicle. Give each a way of speaking their attributes as well as the type of animal. For example “Hi I am Lightening...

  • Python 3 Problem: I hope you can help with this please answer the problem using python...

    Python 3 Problem: I hope you can help with this please answer the problem using python 3. Thanks! Code the program below . The program must contain and use a main function that is called inside of: If __name__ == “__main__”: Create the abstract base class Vehicle with the following attributes: Variables Methods Manufacturer Model Wheels TypeOfVehicle Seats printDetails() - ABC checkInfo(**kwargs) The methods with ABC next to them should be abstracted and overloaded in the child class Create three...

  • Project 7: Vehicles 1 Objective In the last couple projects, you’ve created and used objects in...

    Project 7: Vehicles 1 Objective In the last couple projects, you’ve created and used objects in interesting ways. Now you’ll get a chance to use more of what objects offer, implementing inheritance and polymorphism and seeing them in action. You’ll also get a chance to create and use abstract classes (and, perhaps, methods). After this project, you will have gotten a good survey of object-oriented programming and its potential. This project won’t have a complete UI but will have a...

  • Assignment Requirements I have also attached a Class Diagram that describes the hierarchy of the inheritance...

    Assignment Requirements I have also attached a Class Diagram that describes the hierarchy of the inheritance and interface behaviors . The link to the PDF of the diagram is below MotorVehical.pdf Minimize File Preview User Define Object Assignment: Create a Intellij Project. The Intellij project will contain three user defined classes. The project will test two of the User Define Classes by using the invoking each of their methods and printing the results. You are required to create three UML...

  • Last picture is the tester program! In this Assignment, you will create a Student class and...

    Last picture is the tester program! In this Assignment, you will create a Student class and a Faculty class, and assign them as subclasses of the superclass UHPerson. The details of these classes are in the UML diagram below: UHPerson - name : String - id : int + setName(String) : void + getName(): String + setID(int) : void + getID(): int + toString(): String Faculty Student - facultyList : ArrayList<Faculty - rank: String -office Hours : String - studentList...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT