MickeyL3195 MickeyL3195 27-12-2022 Computers and Technology Answered Complete the class definition. class vehicle: def __init__(self,strmodel,strcolor): self.model = strmodel self.color = strcolor print(self.model) print(self.color) mycar = vehicle('suv','red') mycar.display()