AL-2020/product.py
2020-05-19 17:45:15 +02:00

7 lines
169 B
Python

class Product:
def __init__(self, color, shape, mass, size):
self.color = color
self.shape = shape
self.mass = mass
self.size = size