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 trialAshmit Pathak
4,441 PointsPlZ HELP ME WITH THE ANSWER
i'am not able to determine what to do in the question if somebody can send me his/her code to this solution it would be a great help...
# EXAMPLES
# squared(5) would return 25
# squared("2") would return 4
# squared("tim") would return "timtimtim"
def squared(square):
if square == int():
return square*square
elif square == str():
return len(string)*len(string)
2 Answers
Sathvik Koneru
6,314 PointsThe elif argument doesn't seem to make sense. The len() function gets the length of the string which in the case of a single-digit number would be 1. Moreover, you should be passing square instead of string here, as square is the parameter passed into this method. Instead what you want to do is use the int() method to unpack the string into an integer. For example:
>>>s = "5"
>>> int(s)
5
Use this approach to convert the string to an int and complete the elif statement.
matth89
17,826 PointsHi there. There was another post about this challenge a few minutes ago with a good explanation, here's a link.