Skip to content

Instantly share code, notes, and snippets.

View wpeterw's full-sized avatar
🎯
Focusing

Peter Wieringa wpeterw

🎯
Focusing
View GitHub Profile
class Cars:
# Class attribute
fuel = "Petrol"
# Instance attributes
def __init__(self, brand: str, model: str, year: int, color: str):
self.brand = brand
self.model = model
self.year = year
self.color = color