8 lines
206 B
Python
8 lines
206 B
Python
|
class Sweets:
|
||
|
|
||
|
def __init__(self, mark, taste, type, size, price):
|
||
|
self.mark = mark
|
||
|
self.taste = taste
|
||
|
self.type = type
|
||
|
self.size = size
|
||
|
self.price = price
|