Skip to main content

1.0 Python: Functions

A function is a block of code which only runs when it is called.

You can pass data, known as parameters, into a function.

A function can return data as a result.

1.1 Creating a Function

In Python a function is defined using the def keyword:

1.1.1 Example

def my_function():
print("Hello from a function")

1.2 Calling a Function

To call a function, use the function name followed by parenthesis:

1.2.1 Example

def my_function():
print("Hello from a function")

my_function()

1.3 Arguments

Information can be passed into functions as arguments.

Arguments are specified after the function name, inside the parentheses. You can add as many arguments as you want, just separate them with a comma.

The following example has a function with one argument (fname). When the function is called, we pass along a first name, which is used inside the function to print the full name:

1.3.1 Example

def my_function(fname):
print(fname + " Refsnes")

my_function("Emil")
my_function("Tobias")
my_function("Linus")
note

Arguments are often shortened to args in Python documentations.


1.4 Parameters or Arguments?

The terms parameter and argument can be used for the same thing: information that are passed into a function.

note

From a function's perspective:

A parameter is the variable listed inside the parentheses in the function definition.

An argument is the value that is sent to the function when it is called.


1.5 Number of Arguments

By default, a function must be called with the correct number of arguments. Meaning that if your function expects 2 arguments, you have to call the function with 2 arguments, not more, and not less.

1.5.1 Example

This function expects 2 arguments, and gets 2 arguments:

def my_function(fname, lname):
print(fname + " " + lname)

my_function("Emil", "Refsnes")

If you try to call the function with 1 or 3 arguments, you will get an error:

1.5.2 Example

Wrong

This function expects 2 arguments, but gets only 1:

def my_function(fname, lname):
print(fname + " " + lname)

my_function("Emil")

1.6 Arbitrary Arguments, *args

If you do not know how many arguments that will be passed into your function, add a * before the parameter name in the function definition.

This way the function will receive a tuple of arguments, and can access the items accordingly:

1.6.1 Example

If the number of arguments is unknown, add a * before the parameter name:

def my_function(*kids):
print("The youngest child is " + kids[2])

my_function("Emil", "Tobias", "Linus")
note

Arbitrary Arguments are often shortened to *args in Python documentations.


1.7 Keyword Arguments

You can also send arguments with the key = value syntax.

This way the order of the arguments does not matter.

1.7.1 Example

def my_function(child3, child2, child1):
print("The youngest child is " + child3)

my_function(child1 = "Emil", child2 = "Tobias", child3 = "Linus")
note

The phrase Keyword Arguments are often shortened to kwargs in Python documentations.


1.8 Arbitrary Keyword Arguments, **kwargs

If you do not know how many keyword arguments that will be passed into your function, add two asterisk: ** before the parameter name in the function definition.

This way the function will receive a dictionary of arguments, and can access the items accordingly:

1.8.1 Example

If the number of keyword arguments is unknown, add a double ** before the parameter name:

def my_function(**kid):
print("His last name is " + kid["lname"])

my_function(fname = "Tobias", lname = "Refsnes")
note

Arbitrary Kword Arguments are often shortened to **kwargs in Python documentations.