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

I don't understand. Please help.

I tried but cannot resolve this problem.

squaring.py
def square(number):
    square_of_the_value_passed_in = "number"
    return square_of_the_value_passed_in

2 Answers

Here's one way to tackle the challenge...

  • First, you need to define the function. You've already did that correctly
  • Then, you need to square the number passed in and save it in a variable. To square a variable, you simply multiply it by itself, e.g. number * number
  • Return the variable
Christopher Caron
Christopher Caron
1,270 Points

Hi,

You defined the function properly but there is no need for your second line of code. Just think of how to square a number (just multiply it by itself) and then return that.

Remember, you're squaring the parameter (number) so you will just be returning (number * number) in this exercise