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 trialIan Maina
4,571 PointsHelp me out here please!
what is wrong with this code
# EXAMPLES
# squared(5) would return 25
# squared("2") would return 4
# squared("tim") would return "timtimtim"
def squared(num):
try:
if int(num):
return num * num
else:
return num * len(num)
except:
print("")
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Ian,
You've more or less have the logic going in the right direction, but you don't need the if/else
block inside the try/catch
block. The point of the try/catch
is that if something works (try) ... do something. If it doesn't work (catch) ... do something else.
Give it another go with that in mind. If you're still stuck, have a peek at this thread, and it will more or less 'give' you the answer, but with some good explanations.
Keep coding! :)