IT 117: Intermediate Scripting
Homework 8

Due

Sunday, April 6th at 11:59 PM

What You Need to Do

Setup On Your Machine

Specification

Test Code

Output

Suggestions

  1. Add a header for the class Car to the script.
    Create the method header for the constructor __init__ with parameters self, make, model and year.
    For the body of this function, use a pass statement.
    Run the script and fix any errors you find.
  2. Copy the test code to the bottom of the script.
    Comment out all but the first line.
    Add assignment statements to the script for the attributes make, model and year.
    Run the script and fix any errors you find.
  3. Create the accesor method get_make that returns the value of make.
    Remove the # from the next line in the test code.
    Run the script and fix any errors you find.
  4. Create the accesor method get_model that returns the value of model.
    Remove the # from the next line in the test code.
    Run the script and fix any errors you find.
  5. Create the accesor method get_year that returns the value of year.
    Remove the # from the next line in the test code.
    Run the script and fix any errors you find.
  6. Create print_car that prints all the attributes with a comma after the first two values.
    Remove the # from the last line in the test code.
    Run the script and fix any errors you find.

Testing on Your Machine

Copy the Script to Unix

Testing the Script on Unix (Optional)

Copyright © 2022 Glenn Hoffman. All rights reserved. May not be reproduced without permission.