pickling
import pickle
rb
pickle_file = open('students.pk', 'rb')
pickle.load
wb
pickle_file = open('students.pk', 'wb')
pickle.dump
before the class declaration
manufacturer model year color
def __init__(self, manufacturer, model, year, color):
self.__manufacturer = manufacturer
self.__model = model
self.__year = year
self.__color = color