Python - Methods and Behavior Definition
What is the output of this code?
class Car:
def __init__(self):
self.speed = 0
car = Car()
car.speed = 50
print(car.speed)