Video Lesson:
Lesson Transcript:
A function is a container for a few lines of code that perform a specific task.
Functions allow us to organize our code a lot better by breaking the code into smaller, more manageable chunks that are doing specific things.
Here's how a function definition looks like in Python:
def function_name():
# function body (where all the instructions are written)
There are two main components of a function:
1. The function header:
It consists of:
def
keyword which is short for "define". It tells Python that we are about to define a functionfunction_name
is the function's name, a unique identifier we use to refer to the function()
). We'll learn more about their use in next lessons:
) that marks the end of the function header2. The function body:
This is the code that Python executes whenever the function is called (where we have our Python comment). It consists of one or more indented Python statements.
Here's an example of a function:
def say_hello():
print("Hello World")
Notice that we indented (added two whitespaces before) our print("Hello World")
.
Python uses indentation to indicate which lines of code are part of a function and which are not. We'll learn more about this in the next lesson.
Calling a function
If you copy paste the code we've written above in an editor and run it, you'll notice that nothing is being printed to the console.
That's because a function declaration alone does not ask the code inside the function body to run, it just declares the existence of the function.
The code inside a function body runs, or executes, only when the function is called.
You can call or invoke a function by typing its name followed by parentheses, like this:
# Function declaration:
def say_hello():
print("Hello World")
# Function call:
say_hello() # Output: Hello World
All of the code inside the function body will be executed every time the function is called.
In our example, each time the function is called it will print out the message Hello World
on the dev console.
We can call a function as many times as it is needed.
Assignment
Follow the Coding Tutorial and let's write some functions.
Hint
Look at the examples above if you get stuck.
In this lesson, we will explore the concept of functions in Python. Functions are fundamental building blocks in programming that allow us to encapsulate code into reusable blocks. This not only makes our code more organized but also enhances readability and maintainability. Functions are particularly useful in scenarios where we need to perform the same task multiple times within a program.
Before diving into more complex aspects, it's crucial to understand the basic structure and components of a function in Python. A function consists of a header and a body. The header includes the def
keyword, the function name, parentheses, and a colon. The body contains the indented code that performs the function's task.
Here's a simple example:
def greet():
print("Hello, World!")
In this example, greet
is the function name, and print("Hello, World!")
is the function body.
Let's break down the key concepts and techniques involved in defining and using functions:
Here's an example that includes parameters:
def greet(name):
print(f"Hello, {name}!")
greet("Alice") # Output: Hello, Alice!
greet("Bob") # Output: Hello, Bob!
Functions can be used in various contexts. Here are a few examples:
# Example 1: Function without parameters
def say_hello():
print("Hello, World!")
say_hello() # Output: Hello, World!
# Example 2: Function with parameters
def add(a, b):
return a + b
result = add(3, 4)
print(result) # Output: 7
# Example 3: Function with default parameters
def greet(name="Guest"):
print(f"Hello, {name}!")
greet() # Output: Hello, Guest!
greet("Alice") # Output: Hello, Alice!
When working with functions, it's essential to avoid common mistakes and follow best practices:
Once you're comfortable with basic functions, you can explore advanced techniques such as:
lambda
keyword.Example of a lambda function:
add = lambda x, y: x + y
print(add(5, 3)) # Output: 8
Let's implement a function that calculates the factorial of a number:
def factorial(n):
# Base case: if n is 0 or 1, return 1
if n == 0 or n == 1:
return 1
# Recursive case: n * factorial of (n-1)
else:
return n * factorial(n - 1)
# Test the function
print(factorial(5)) # Output: 120
Debugging and testing are crucial for ensuring your functions work correctly. Here are some tips:
Example of a test case:
def test_factorial():
assert factorial(0) == 1
assert factorial(1) == 1
assert factorial(5) == 120
print("All tests passed.")
test_factorial()
When approaching problems related to functions, consider the following strategies:
In this lesson, we covered the basics of functions in Python, including their definition, usage, and best practices. Mastering functions is essential for writing efficient and maintainable code. Keep practicing and exploring more advanced concepts to enhance your programming skills.
For further reading and practice, check out the following resources: