Q:

Create a Vehicle class without any variables and methods using python programming

belongs to collection: Python OOP Exercises

-15

Create a Vehicle class without any variables and methods

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution:

class Vehicle:
    pass

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Create a child class Bus that will inherit all of ... >>
<< Write a Python program to create a Vehicle class w...