Level 1
0 / 100 XP

Importing functions from another file

Welcome to the lesson on importing functions from another file in Python. This is a powerful tool that allows you to organize and reuse your code more efficiently.

To import a function from another file, you first need to create a separate Python file that contains the function you want to import. Let's say you have a file called "my_functions.py" that contains a function called "add_numbers" and "subtract_numbers":

Python
# my_functions.py def add_numbers(num1, num2): print(num1 + num2) def subtract_numbers(num1, num2): print(num1 - num2)

To import this function into the main.py Python file, you can use the following syntax:

from my_functions import add_numbers

This will import the add_numbers function from the my_functions.py file and allow you to use it in your current file.

You can also import multiple functions from the same file by separating them with a comma:

from my_functions import add_numbers, subtract_numbers

Once you have imported the function, you can use it just like any other function in your main.py file. For example, you could call the two functions like this:

Text
add_numbers(5, 10) subtract_numbers(5, 10)

Remember to always include the file path if your Python files are not in the same directory.

That's it for this lesson on importing functions from another file in Python. Practice using this technique to organize and reuse your code more efficiently.