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

Felicity Dalton
seal-mask
.a{fill-rule:evenodd;}techdegree
Felicity Dalton
Python Web Development Techdegree Student 217 Points

squaring_please_help

I know this is probably wildly wrong what I have written... I got back 'result not defined'. Please help...

squaring.py
def square(number):
    return (number * number)
    number = int(input(3))
    result = (3 * 3)

print(result)

3 Answers

Leo Yun Tao
Leo Yun Tao
15,956 Points

here is the answer if you really have no idea how to do

def square(number):
    return number * number    

result = square(3)

You shouldn’t give the answer,she doesn’t learn from it

Hello! 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