Skip to main content

How to create and use modules in python

How to create and use modules in python

Hi. Welcome to another interesting session. If you are new please do checkout previous articles on python and other programming languages. And also subscribe to our YouTube channel for the video tutorials.

In this article you will learn:

  • What is a module?
  • How to create and import custom made modules in python
  • Find the different ways to import and use custom built-in modules in Python.

Defining a module

Let’s start by defining modules in python

Modules contain statements and definitions in python that is, any file that contains proper Python code and has the .py extension can be called a Python module.  They usually contain objects such as classes and functions.

Modules help break down large programs into manageable files. They also promote code reusability

Creating a module

Let us create our first module. Modules are generally known by their main filename, that is, without the .py extension. For example, let’s create a module and save it as multiplier.py.

def multiply (a, b):
product = a * b
"""this programs multiply two numbers
and returns the result"""
return product

The module which we have just created will be known as a multiplier. The function above takes in two numbers and returns their product.

Importing a module

Importing a module allows us to access the objects, statements, and definitions it contains.

There are different ways to import a module.

Through a dot (.) operator and also by using by the import keyword

For example using the dot (.) operator, if you want to reuse the multiplier module, you can use the following statements:

>>>import multiplier
>>> multiplier.multiply (5, 3)
15
>>>

The answer which we will get above is 15. This is so because we have imported a multiplier which is a product rule, so the two numbers will be multiplied.

Note that, Python has different ways which we can use to Import modules in python. Check out the full list of python standard modules at the library directory inside the location where python is installed.

Renaming a module

We can import a module by renaming it. We can change the names of the already existing module. This actually saves us time and stress when the name of the already existing module is too long. Let’s take an example

>>> import mathematics as math
>>>print(math.sqrt(25))
5.0
>>>import multi as multiplier
>>>print(“The product of 10 and 4 is “, multi.multiply(10, 4))
The product of 10 and 4 is 40
>>>

Universal Imports

Instead of importing specific object(s), it’s possible to import everything from a module by using an asterisk * in the import statement. This is called universal import.

>>> from math import *
>>> sin(4.01) + tan(cos(3.1)) + e
>>> from math import *
>>> sin(4.01) + tan(cos(3.1)) + e

Using the dir() built-in function

We can use the built-in function dir to list the names inside a module after importing it and supply the names as arguments.

For example, to view the contents of the user-defined multiplier module:

>>import multiplier
>>>dir (multiplier)
[‘__builtins__’, ‘__cached__’, ‘__doc__’, ‘__file__’, ‘__loader__’, ‘__name__’,
‘__package__’, ‘__spec__’, ‘multiply’]
>>>

Note that the dir() built-in functions can be used on all modules even the ones you have created

Importing several module at once 

We can import several modules in one import statement by separating modules names with commas.

>>>import math, multiplier
>>>

We have come to the end of this session. Hope you were as excited as I am. Have a nice time coding.

Comments

Popular posts from this blog

JavaScript Functions

  Hi there, and welcome to another exciting lesson on JavaScript. If this is your first time here, please do well to check out our previous lessons. In the previous lesson, we were discussing JavaScript math methods. It was very intuitive as we got to learn how to use the various math methods. To proceed, we shall be looking at JavaScript functions.  A function in JavaScript like in every other programming language could be defined as a block of code that is written to perform a particular task, and this function is usually invoked or called before it is being implemented. We have been talking about methods throughout the previous lessons right. Do you know that those methods are actually functions? Yes they are functions. You can now have an overview of the importance of functions in every programming language. How do we create a function in JS? To create a function, you follow the format function functionName(Argument) {//Block of code }. Some functions do have a return val...

JavaScript Math Methods

Hello everyone, and welcome to another exciting JavaScript lesson. In the last lessons you have been seeing other methods being used in JS (for example, the string methods). We shall go further into exploring other methods. This time, it’s going to be math methods. Do not move an inch because it’s going to be a very exciting. Before we look at what a math method is, let’s have an overview of math objects. A math object in JavaScript is a static built-in object that includes properties and methods used in performing mathematical tasks. Talking about math properties, they have the syntax Math.property . Some examples are Math.E that returns Euler’s number, Math.PI that returns PI, Math.LN2 that returns the natural logarithm of 2, and many others. The various JavaScript methods contained in the math object, thus, make mathematical operations easier and reduce effort as well as time in math-oriented programming. Some JS methods include abs( ), ceil( ), cos( ), sqrt( ), pow( ), log( ) ...

How to generate random numbers using NumP1

Hello. Welcome to another edition on this platform. For more better understanding, do checkout our YouTube channel to get the video tutorial. In this article of today, we are going to see how to generate random numbers using any of the following methods: Generating a random number Generating a random float and integer Generating random number arrays Generating random number from an array What is a random number? This is a number which cannot be predicted before its occurrence. This number might not different every time. Programmatically, they are two categories of random numbers:     Pseudo-Random numbers       True Random numbers. Just as programs which are written by programmers are a set of instructions, we must follow an algorithm to generate random numbers. Random numbers which are generated using an algorithm are called Pseudo-Random numbers. To generate a true random number, it is important to get the data from sources such as the keyboards, mou...