Develop an automobile class that will be used by dealership

Assignment Help Python Programming
Reference no: EM132330176

Question

You need to develop an automobile class that will be used by a dealership as a vehicle inventory program. The following attributes should be present: Private string make, model, color, int year, and int mileage. The program needs a constructor, add new vehicle, remove vehicle, update vehicle attributes

Below is the code that you have had help on but when ran it is stating you need to define vehicle.Please help.

class Automobile:

def __init__(self, make, model, color, year, mileage):

self._make = make

self._model = model

self._color = color

self._year = year

self._mileage = mileage

def set_make(self, m):

self._make= m

def set_model(self, m):

self._model = m

def set_color(self, m):

self._color = m

def set_year(self, m):

self._year = m

def set_mileage(self, m):

self._mileage = m

def get_make(self):

return self._make

def get_model(self):

return self._model

def get_color(self):

return self._color

def get_year(self):

return self._year

def get_mileage(self):

return self._mileage

vehicles = [ ]

def add_vehicle(vehicle):

global vehicles

vehicles.append(vehicle)

def remove_vehicle(make):

for i in range(len(vehciles)):

if vehicles[i].get_make( ) == make:

del vehciles[i]

def update_vehicle(index, make, model, color, year, mileage):

global vehicles

v = vehicles[index]

v.set_make(make)

v.set_model(model)

v.set_color(color)

v.set_year(mileage)

def write_file( ):

file = open ('vehicles.txt', 'k')

for a in vehicles:

file.write(a)

file.write('n')

file.close( )

def main( ):

menu = { }

menu ['1'] = 'Add vehicle'

menu ['2']= 'Remove vehicle'

menu ['3'] = 'Find Vehicle'

menu ['4'] = 'Quit/Exit'

user = True

while user:

print("""

1. Add vehicle

2. Remove vehicle

3. Find vehicle

4. Quit/Exit

""")

ans= input('Choose options, 1. to add a vehicle, 2. to remove a vehicle, 3. to find a vehicle, or 4. to quit/exit. ')

if ans == '1':

vehicle.add_vehicle

elif ans == '2':

vehicle.remove_vehicle

elif ans == '3':

print('Automobile.vehicle')

elif ans == '4':

print ('Goodbye')

elif ans != '':

print('Invalid entry')

if __name__ == '__main__':

main ( )

Reference no: EM132330176

Questions Cloud

Create statements to add in ten rows of authors and books : Create statements to add in ten rows of authors and books to the table. Use a SELECT statement to retrieve and print all of the rows in the table.
What would you say to represent your client interests : Imagine that you are an attorney asked to defend nude dancing as an act of expression that should be allowed in a bar. What would you say to represent your.
Review the case - gideon v wainwright : The assignment for this week is to locate a landmark U.S. Supreme Court case and draft a case brief. Go the following website and locate the following case.
Examine the sample grant application : Examine the sample grant application in Director's Resource 6-1. Identify the individual sections of the proposal: How much funding has been requested
Develop an automobile class that will be used by dealership : Develop an automobile class that will be used by a dealership as a vehicle inventory program. The following attributes should be present.
Create a python script that takes two parameters : Create a Python script that takes two parameters. List all files names, size, date created in the given folder. Use catch-exception block.
Emerging tools and techniques for system management : Compare free server monitoring tools based on the basic metrics of checking availability and Compare emerging tools and techniques for system management
Write a program that asks the user to enter the price : Write a program which asks the user for the number of miles they drove on a trip. Write a program that asks the user to enter the price of a purchase order.
What would the limits of rationality be for nichols : Probation officer Nichols is in charge of Jim. Jim was sentenced to three years of imprisonment for drug trafficking. However, because Jim had no past records.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd