AL-2020/candy.py

10 lines
152 B
Python

class Candy:
def __init__(self, producent, type, price):
self.producent = producent
self.type = type
self.price = price