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 Python Basics (2015) Number Game App Squared

Sergio Saavedra
seal-mask
.a{fill-rule:evenodd;}techdegree
Sergio Saavedra
Python Web Development Techdegree Student 1,069 Points

In my workspaces this code seems to work fine. I don't know where is the failure. Can anyone help me? Thanks.

below you can see the code

squared.py
def squared(var):
    try:
        if var == int(var):
            return var ** 2  
    except ValueError:
        return var * int(len(var))
Yasser Arenas
Yasser Arenas
5,879 Points

You are comparing a string to an integer ('2' == 2). Try to cast the left side to an integer too. do not forget to cast it again when it enters to the if statement. :)

Sergio Saavedra
seal-mask
.a{fill-rule:evenodd;}techdegree
Sergio Saavedra
Python Web Development Techdegree Student 1,069 Points

I have solvented it replacing "if" statement as below: try: if var * 1 == var return var ** 2 except ValueError: return var * int(len(var))