def __int__(self, volume, type_):
self.volume = volume
self.type = type
def pour(self):
print("Pouring...")
def fill(self):
print("Filling...")
def recycle(self):
print("Recycling")
btl = Bottle(1233, "glass")
print(btl)
int это тип данных
Обсуждают сегодня