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 trial

Python Object-Oriented Python Advanced Objects Double

nakalkucing
nakalkucing
12,964 Points

This 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. :)

doubler.py
class Double(int):
    def __new__(*args, **kwargs):
        output = int.__new__(*args, **kwargs)
        final_output = output * 2
        return final_output

1 Answer

Steven Parker
Steven Parker
230,688 Points

You can do it without creating the temporary variables:

class Double(int):
    def __new__(*args, **kwargs):
        return int.__new__(*args, **kwargs) * 2