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 trialJustin Thomas
212 PointsSquaring Challenge, ERROR: test_results (__main__.TestFunctionDefinitionExecution)
I can't seem to solve the problem. My code works, but it keeps telling me I have an error?
def square(number):
return (number * number)
total = int(input("What number would you like to square? "))
squared = square(total)
print("The square of {} is {}".format(total, squared))
1 Answer
Steven Parker
231,198 PointsYour code "works", but it does something different from what the instructions asked for:
- they say "call your new function and pass it the argument 3" — they mean as a literal, not by using
input
- they also say "create a new variable named result to store the value ...", but you've created "squared" instead
- then instructions also don't ask you to
print
anything
Justin Thomas
212 PointsI just went back and read the whole thing properly, it's only asking me to define the function and hasn't even asked me to complete it yet.
I removed everything but the function and it's passed me.
Thank you
Justin Thomas
212 PointsJustin Thomas
212 PointsAlso in the error it says Traceback (most recent call last): File "", line 48, in test_results File "/workdir/utils/challenge.py", line 24, in execute_source exec(src) File "", line 5, in EOFError: EOF when reading a line
I'm looking through the lines but to me it looks like I have ended my line by closing the brackets?