Learn Python By Example: How Do You Import a Module in Python

In this tutorial, we will show you how to import a module in Python.

Alain Saamego
2 min readApr 10, 2022

Python is a widely used programming language that is easy to learn for beginners. It has a vast standard library and allows developers to easily import modules from other languages. In this tutorial, we will show you how to import a module in Python.

Step 1
Go to the terminal for the project where you want to add that module

Step 2
Install pip

python -m pip install --upgrade pip

Step 3
Download the module with the code below

 
pip install modulename

Step 4
Import the module with the following code

import modulname # This line should be the first line in the code

Example:

In conclusion, importing a module in Python is a fairly straightforward process. However, there are a few things to keep in mind when doing so. By following the steps outlined in this article, you should be able to import any module you need into your Python program.

If you enjoyed this article then consider becoming a Medium member today. You will gain unlimited access to Medium’s rich library of articles for just $5 bucks a month (and at no additional cost to you)

--

--