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

Not storing total in result

I think the answer to this question is very simple but everything I am trying is not working.

squaring.py
def square(number):
    total = (number * number) 
    return total

result = 

square(3)
Jeff Muday
Jeff Muday
Treehouse Moderator 28,716 Points

Python does not have as much flexibility as other languages on "whitespace"... so, if just put result and square(3) on the same line, and it will work.

result = square(3)

1 Answer

To store the value of the func call, you have to store the func call just as you would any other variable value.

if True:
    result = square(3)
else:
    pass