Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

nakalkucing
12,964 PointsThis code works, but I was wondering if there was another way to do it.
There were two ways to complete Task 2. There were hardly any differences between them. But I'm interested to know if there are multiple ways to complete Task 3. If you have another way could you let me know? Thank you. :)
class Double(int):
def __new__(*args, **kwargs):
output = int.__new__(*args, **kwargs)
final_output = output * 2
return final_output
1 Answer

Steven Parker
216,136 PointsYou can do it without creating the temporary variables:
class Double(int):
def __new__(*args, **kwargs):
return int.__new__(*args, **kwargs) * 2
nakalkucing
12,964 Pointsnakalkucing
12,964 PointsThank you. :)