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 trialSplotch_ P
2,984 PointsI am having a hard time storing the value of the squared number as a result.
If anyone can show me a fast way to write this correctly I would really appreciate it
def square(num):
print (num * num)
2 Answers
Alexander Davison
65,469 PointsYou need to return
, not print
.
print
just prints data onto the screen, but return
allows you to return the data for further processing.
KRIS NIKOLAISEN
54,971 PointsThe challenge specifies the parameter name is "number" but I think it works either way.
def square(number):
return (number * number)
Splotch_ P
2,984 PointsSplotch_ P
2,984 PointsThank you for the responses. I figured out that I wasn’t storing the square of 3 as a result after passing in the arguement.