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 trialAlexander Davison
65,469 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
231,248 PointsIf 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,469 PointsAlexander Davison
65,469 PointsThank you
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsAgain, lovin' the emoji use!