stuck in python OOP
hello, so i have tried to learn programming for years and i have time to learn.24/7 now but. i just dont get it how. tolearn, i dont understand nothing but If Else etc.., have finished courses like this some 3-4x already . Im trying again and i cannot. figure out how to fix this. juice maker in OOP for hours!. :( Juice Maker You are given a Juice class, which has name and capacity properties. You need to complete the code to enable and adding of two Juice objects, resulting in a new Juice object with the combined capacity and names of the two juices being added. For example, if you add an Orange juice with 1.0 capacity and an Apple juice with 2.5 capacity, the resulting juice should have: name: Orange&Apple capacity: 3.5 The names have been combined using an & symbol. Use the __add__ method to define a custom behavior for the + operator and return the resulting object. class Juice: def __init__(self, name, capacity): self.name = name self.capacity = capacity def __str__(self): return (self.name + ' ('+str(self.capacity)+'L)') a = Juice('Orange', 1.5) b = Juice('Apple', 2.0) result = a + b print(result) i tried something like this but it is wrong! def __add__(self): return ((self.a + "&" + self.b) +capacity)