AL-2020/product.py

7 lines
169 B
Python
Raw Normal View History

2020-05-19 17:45:15 +02:00
class Product:
def __init__(self, color, shape, mass, size):
self.color = color
self.shape = shape
self.mass = mass
self.size = size