FAQ: Learn Python: Function Arguments - Parameters and Arguments

This community-built FAQ covers the “Parameters and Arguments” exercise from the lesson “Learn Python: Function Arguments”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Python 3

FAQs on the exercise Parameters and Arguments

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

I am confused I thought parameters are what is passed into the function. Those are what is put into a function call correct?

def function_name(parameter1, parameter2):
  # The placeholder variables used inside a function definition are called parameters
  print(parameter1)
  return parameter2
# The outdent signals the end of the function definition

# "Arguments" are the values passed into a function call
argument1 = "argument 1"
argument2 = "argument 2"

oh i understand now, read a little more

So typed as instructed and for some reason it won’t return the parameters I put in. Here’s what I wrote:

Your code below:

def generate_trip_instructions(location):
print(“Looks like you are planning a trip to visit ”)
print(“You can use the public subway system to get to ”)
generate_trip_instructions(“Central Park”)

Here’s what returned:
Looks like you are planning a trip to visit
You can use the public subway system to get to
What am I missing? I even tried location = “Central Park” which returned a syntax error.
Thanks in advance for your help.

Weird…at the end of both print statements “location” with <> is there but not showing up on my question here. I did type them for both print statements.