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 trialSam Sim Som
1,128 Pointswhy is not correct?
Hi, Kennit. this is my answer i try my own machine code is working but. i cant pass the challenge.
def squared(num): try: return print(int(num) ** 2) except ValueError: return print(num * 3)
or
def squared(num): try: return int(num) ** 2 except ValueError: return num * 3
2 Answers
Lin Lu
29,171 PointsHi, Instead of an integer 3, you should use the len() function to get the length of the string.
try:
return int(num) ** 2
except ValueError:
return num * len(num)
Sam Sim Som
1,128 Pointsthank you Lin. i missed that point.
Lin Lu
29,171 PointsYou're welcome!