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 trialAlbert Landicho
217 PointsWhat is an argument 3?
I already created a function but the task now is to pass it argument 3. What is argument 3?
def square(number):
result = number*number
return result
1 Answer
Julia Beckwith
2,526 PointsIt's wanting you to now use your function with the number 3. 3 is the argument and "passing it" basically means to use your function on the number 3.
square(3)
You just have to set this equal to "result". Keep in mind, this will be done outside of your function definition!