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 trialAyub Muhammad
Courses Plus Student 4,345 PointsDon't understand parameters
Can someone please explain to me what a parameter is and what it does? Thank you!
1 Answer
prateekparekh
12,895 PointsThe Python doc defines parameters and arguments as follows:
Parameters are defined by the names that appear in a function definition, whereas arguments are the values actually passed to a function when calling it. Parameters define what types of arguments a function can accept.
We define a function say_hello(name) below:
def say_hello(name):
print("Hello {}".format(name))
name is the parameter
We call the function say_hello() below. my_Name is the argument passed to say_hello() method
my_name = "Ayub"
say_hello(my_name)
Parameters help you call functions with additional information (name in the above example) and provide flexibility. Without them, if you wanted to print name, you'd have to keep changing the my_name variable insdie the say_hello() function again and again.
my_name = 'Patrick'
say_hello("Hello {}".format(my_name))
Craig Dennis
Treehouse TeacherCraig Dennis
Treehouse TeacherGreat answer Prateek Parekh !