class Car: wheels = 4 # <- Class variable def __init__(self, name): self.name = name # <- Instance variable