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

(Python) Bummer! `squared` didn't return the right answer.

What is wrong here???

squared.py
# EXAMPLES
# squared(5) would return 25
# squared("2") would return 4
# squared("tim") would return "timtimtim"

def squared(num):
  try:
    test = int(num)
  except:
    return len(num) ** 2
  return test ** 2

1 Answer

Steven Parker
Steven Parker
229,708 Points

:white_check_mark: If the input is a number, you square it, that part is right.

:negative_squared_cross_mark: If the input is not a number you square its length, but that's not what the challenge asks.

:point_right: Instead, you should repeat it a number of times, based on its length.

Thank you