Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMathew Yangang
4,433 Pointsnot sure why this wrong
not sure why this wrong, any ideas please?
Mathew Yangang
4,433 PointsHello Brendan, it is number 9. This was my answer
@property def volume(self): return self._volume
@property.num def num(self, num): self._volume = num
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsYou need to use the name of the property you're setting after the @
symbol, and then .setter
:
@property
def volume(self):
return self._volume
@volume.setter
def volume(self, num):
self._volume = num;
Here is some documentation that might help.
Mathew Yangang
4,433 PointsThank you Brendan. I just find it hard to wrap my brain around this OOP course
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsBrendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsWhich quiz question? And what was your answer?