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 trial

Python Python Basics Functions and Looping Create a Function

morgan simms
morgan simms
1,269 Points

Make sure you call the square function, and pass it 3

AssertionError: != 9 : Make sure you store the return value from the function in a variable named result

squaring.py
def square(number):
    square = number * number
    return square
def result(square):
    return (square(3))
    result = square
    return result
print(result)

1 Answer

Storing the result of a function in a variable is like any other variable assignment. The variable goes on the left, followed by the assignment operator, then the function call. The following passes myargument to myfunction and stores the result in a variable named a

a = myfunction(myargument)