class Vehicle:
    

    def __init__(self, max_speed, mileage):
        

        self.max_speed = max_speed
        self.mileage = mileage


carone  = Vehicle(240, 18)
print ('The mileage of carone is', carone.mileage)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: