forked from s444420/AL-2020
7 lines
169 B
Python
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 |