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

Tyler Lundgren
Tyler Lundgren
6,826 Points

In the body of my function, how do I return a squared number?

def square (number): return number * 2....?????

squaring.py
def square (number):
    return number * 2 != 

Hi!, your really close, the right code is this:

def square(number):
    return number*number

like u see first, i created a function named square and pass a paramater named number. to return a squared number *** YOU NEED TO MULTIPLY THE NUMBER BY HIM SELF*** and not by 2, and because of that u need to retun number*number.

if that answer has halped mark as best answer in order to close this article :D

noob developer needs to post answers not comments

3 Answers

Hi!, your really close, the right code is this:

def square(number):
    return number*number

like u see first, i created a function named square and pass a paramater named number. to return a squared number *** YOU NEED TO MULTIPLY THE NUMBER BY HIM SELF*** and not by 2, and because of that u need to retun number*number.

if that answer has halped mark as best answer in order to close this article :D

Mark Nembhard
Mark Nembhard
1,387 Points

Please help. I think this is correct but it keeps coming up error on line 4 "" end of file. See below. def square(number): square = number*number return square number = int(input("input the number you would like squared")) result = square(number) Print (" your number squared is {}".format(result))

Mark Nembhard the correct answer is above

Mark Nembhard
Mark Nembhard
1,387 Points

Iv'e done that. the code is returning an error still