AL-2020/candy.py

10 lines
152 B
Python
Raw Normal View History

2020-05-19 13:14:19 +02:00
class Candy:
def __init__(self, producent, type, price):
self.producent = producent
self.type = type
self.price = price