Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

James Rennie
16,807 PointsNot storing total in result
I think the answer to this question is very simple but everything I am trying is not working.
def square(number):
total = (number * number)
return total
result =
square(3)
1 Answer

Adam N
70,223 PointsTo 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
Jeff Muday
Treehouse Moderator 27,510 PointsJeff Muday
Treehouse Moderator 27,510 PointsPython 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)