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 trialSergey Mangov
3,651 Pointssquared. what's wrong in here?
def squared(value):
try:
(value, int) == True:
return int(value) ** 2
except ValueError:
return value * len(value)
# EXAMPLES
# squared(5) would return 25
# squared("2") would return 4
# squared("tim") would return "timtimtim"
def squared(value):
try:
(value, int) == True:
return int(value) ** 2
except ValueError:
return value * len(value)
2 Answers
Jeremiah Bushau
24,061 Pointshello, there are some syntax errors that may be causing your problem.
def squared(value):
try:
(value, int) == True # remove : here
return int(value) ** 2 # no indentation here
except ValueError:
return value * len(value)
Steven Parker
231,248 PointsJeremiah is partly correct, but the line after "try" serves no purpose even after syntax correction.
def squared(value):
try:
# (value, int) == True: - remove this line entirely
return int(value) ** 2 # fix the indentation here
except ValueError:
return value * len(value)