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

In the body of the function, return the square of the value that was passed in. (A **square* is the value multiplied b

Hi,Can somebody help me locate the mistake in line 4. am getting this error msg: File "", line 4, in EOFError: EOF

squaring.py
def square(number):
    return(number * number)
solution = square(10)
number = int(input("what number would you like the square to be?  "))
solution = square(number)      

print("That number squared is {}".format(solution)) 

1 Answer

Steven Parker
Steven Parker
230,324 Points

For task 1, you only need to create the function. You won't need any other code, or to "input" or "print" anything.

When you get to task 2 you'll create a variable and call the function with a specific argument.