Reading What You Wrote¶

Again, make a class to store information about a car.

Car UML

Create a list to store five Car objects. (So far, this is the same as the previous assignment.)

Ask the user for the name of a file, and then open that file and read all the data from that file into the list (as Car objects).

Finally, display the values in the list.

From which file do you want to load this information? cars.txt
Data loaded.

Car 1
	Make: Toyota
	Model: Camry
	Year: 1985
	License: 622-VRX

Car 2
	Make: Chevrolet
	Model: Chevette
	Year: 1980
	License: J43-SMB

Car 3
	Make: Honda
	Model: Civic
	Year: 1993
	License: 883-RS9

Car 4
	Make: Ford
	Model: Mustang
	Year: 1966
	License: AZUCAR

Car 5
	Make: Dodge
	Model: Neon
	Year: 1996
	License: G74-LLC

©2021 Daniel Gallo

This assignment is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.

Creative Commons License

Adapted for Python from Graham Mitchell’s Programming By Doing