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 trialChristiian Allen
Courses Plus Student 859 PointsNeed help with function?
I'm having problems with this new directive?
def square(number):
return number*number
result = return(input("The number from return")
1 Answer
Steven Parker
231,248 PointsThe instructions say to "call your new function and pass it the argument 3."
- you won't need to "input" anything
- you'll give it the number 3 as an argument
- when calling a function, you need to use the function's name
- you won't need another "return" statement (they are not allowed outside functions anyway)
Steven Parker
231,248 PointsSteven Parker
231,248 PointsChristian Allen — Did you get it? You can mark a question solved by choosing a "best answer".
And happy coding!