10 lines
152 B
Python
10 lines
152 B
Python
|
|
|
|
class Candy:
|
|
def __init__(self, producent, type, price):
|
|
|
|
self.producent = producent
|
|
self.type = type
|
|
self.price = price
|
|
|