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 Returning Values

would this code work?

def square(number): return number * number number = int(input("square a value. "))

print("the value is {}".format(number))

2 Answers

Steven Parker
Steven Parker
229,732 Points

Indentation is critical to Python, so it's not clear how a program will perform when it is displayed unformatted. When posting code to the forum, use Markdown formatting to preserve the appearance, or share the entire workspace by making a snapshot and posting the link to it.

But just guessing about indentation, it looks like this code might run without errors, but might not do what you expect. In particular, it doesn't seem like it would square the number entered.

Also, if this is intended for the challenge that follows the video, it has specific objectives not met by this code. And you won't need to "input" or "print" anything there.

thanks, wasn't sure on how to do markdown formatting.

I decided to test my skills and modified your code. If I made mistakes please correct me, been only practicing for a few hours.

def square(number):
    return number * number

number_chosen = int(input("square a value. "))
squared_number = square(number_chosen)

print("the value is {}".format(squared_number))