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.

Alexander Davison
65,456 Points(Python) Bummer! `squared` didn't return the right answer.
What is wrong here???
# 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
220,416 Points If the input is a number, you square it, that part is right.
If the input is not a number you square its length, but that's not what the challenge asks.
Instead, you should repeat it a number of times, based on its length.
Alexander Davison
65,456 PointsAlexander Davison
65,456 PointsThank you
Chris Freeman
Treehouse Moderator 68,082 PointsChris Freeman
Treehouse Moderator 68,082 PointsAgain, lovin' the emoji use!