Write the special method __str__() for CarRecord.
Sample output with input: 2009 'ABC321'
Year: 2009, VIN: ABC321
The following code is what I have came up with, but I'm receiving an error:
TYPEERROR: __str__ returned non-string
I can't figure out where I went wrong.

Respuesta :

Model year and registration number of an automobile are displayed in the program's implementation of the car record class. This is how the Python 3 program works.

Car record class:

initialize the carRecord class.

__init (self) def

#define the class's init method

0 for self.year made

Initialized to 0 is the #year the car was built (integer)

auto.car vin = ""

The string #car registration is empty.

__str (self) def

#define a method for str

bring back "Year: self.year made, VIN: self.car vin"

# yields a formatted year and VIN number display.

carrecord = my car; ()

#creates a carRecord class instance

Year Made = int(input()) for my car

#asks the user for the vehicle's model year

input my car.car vin ()

#asks the user for the model's VIN.

print(my car)

# show the specifics

An example program run is provided.

To know more about Python click here:

https://brainly.com/question/18502436

#SPJ4

ACCESS MORE
EDU ACCESS
Universidad de Mexico