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 trialbright chibuike
3,245 Pointssubclassing built-ins
please what could the solution to this question
Now override new. Create a new int instance from whatever is passed in as arguments and keyword arguments. Return that instance.
You should remove the pass.
class Double(int):
def __new__(*args,**kwargs):
2 Answers
Steven Parker
231,198 PointsYou've removed the "pass", but you still need to do the other parts of the instructions:
- Create a new
int
instance ... - and then ... Return that instance.
Miranda Chen
6,945 PointsFirst create the int instance
self = int.__new__(*args, *kwargs)
Then return the instance
return self
Paul Kim
1,966 Pointsthis isn't quite right either
Johannes Andreas
2,589 PointsJohannes Andreas
2,589 PointsHow did you solve the first one? I can you help me?