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 trialFelicity Dalton
Python Web Development Techdegree Student 217 Pointssquaring_please_help
I know this is probably wildly wrong what I have written... I got back 'result not defined'. Please help...
def square(number):
return (number * number)
number = int(input(3))
result = (3 * 3)
print(result)
3 Answers
Leo Yun Tao
15,956 Pointshere is the answer if you really have no idea how to do
def square(number):
return number * number
result = square(3)
<noob />
17,062 PointsHello! you are very close! you need to return number * number. in the end u call the function with the argument 3 inside it and store the outcome in a variable called result
Felicity Dalton
Python Web Development Techdegree Student 217 PointsThank you both :)
<noob />
17,062 Points<noob />
17,062 PointsYou shouldnβt give the answer,she doesnβt learn from it