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 trialJames 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,280 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 28,720 PointsJeff Muday
Treehouse Moderator 28,720 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)