AL-2020/product.py

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