I need help writing a code for this. It has to be written inPython. Thank you.
Write a class named Car that has the following data attributes: _year_model: (for the car’s year model) make: (for the make of the car) speed: (for the car’s current speed) In addition, the class should have the following methods: init__method that accepts the car’s year model and make as arguments These values should be assigned to the object’s_year_model and_make data
OR
OR