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 trialPriyansh Goel
Courses Plus Student 225 PointsWhat is wrong with my code??
I did everything write but it still gives an error
def square(number):
return number * number
b = int(input())
a = square (b)
print (a)
1 Answer
Steven Parker
231,248 PointsThe instructions say "call your new function and pass it the argument 3." and "create a new variable named result to store the value from the function call."
What they mean by passing the argument is to put that value between the parentheses directly in the code when you call the function. You won't need to use "input".
And instead of "result", this code is storing the returned value in "a".
Fix those issues and you should pass the challenge. And you also won't need to "print" anything.