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

wayne ross
wayne ross
3,225 Points

getting TypeError for inputs of arg1='8' instead of 64 when using return((arg1**2))

---python---

def squared(arg1): print('inside function') #print(arg1) #print((arg1)2) try: print('made it to try') int(arg1) print('Try was True') return((arg1*2))

except ValueError:

  print('made it to except')
  return (((arg1)*2))

'''except TypeError:
  x=int((arg1))

  return((x**2))'''

1 Answer

wayne ross
wayne ross
3,225 Points
def squared(arg1):
    try:
        int(arg1)
        return((arg1**2))

    except ValueError:
        return (((arg1)*(len(arg1))))

    except TypeError:
        newType_var=int(arg1)    
        return((newType_var**2))