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 trialMike Le
3,854 PointsI think the problem is broken. I ran the same function in the shell and it worked as the specs.
Below is the code: def squared(num): try: i = int(num) return (i * i) except ValueError: return (num * 3)
# EXAMPLES
# squared(5) would return 25
# squared("2") would return 4
# squared("tim") would return "timtimtim"
def squared(num):
try:
i = int(num)
return (i * i)
except ValueError:
return (num * 3)
2 Answers
Steven Parker
231,236 PointsIf the string cannot be converted to a number, it should be multiplied by it's length. Your testing may have worked with a 3-letter string, but what if the string passed in has more (or less) than 3 letters?
Mike Le
3,854 PointsNvm. Read the specs wrong. Code should have been:
def squared(num):
try:
i = int(num)
return (i * i)
except ValueError:
return (num * len(num))