Create a class named Car and create an instance of it.
Car
class Car: pass my_whip = Car() my_whip.speed = 220 print(my_whip.speed)