Introduction to Python Built-in Modules
By Rohit Sharma
Updated on Apr 08, 2025 | 8 min read | 11.3k views
Share:
For working professionals
For fresh graduates
More
By Rohit Sharma
Updated on Apr 08, 2025 | 8 min read | 11.3k views
Share:
Table of Contents
There are several Python built-in modules that provide different functionalities. These modules are libraries of pre-written code that can be imported and used in Python programs.
Some commonly used Python built-in modules include:
Let’s dive in to further understand Python built-in modules and how they enhance programming efficiency.
Master Python and accelerate your tech career with our Online Data Science Course or dive into cutting-edge innovation through our Artificial Intelligence & Machine Learning Courses.
Python built-in modules are pre-written libraries of code that come bundled with the Python programming language.
These modules provide various functionalities commonly required in programming, such as interacting with the operating system, working with dates and times, performing mathematical operations, generating random numbers, manipulating text, working with data in various formats, and more.
Since Python built-in modules are a core part of the language, they don’t need to be installed separately. They can be used in any Python program simply by importing them.
Take your Python and data science skills to the next level with industry-ready programs designed for future tech leaders:
Python built-in modules follow a modular programming approach, which involves breaking down a program into smaller, self-contained units or modules. This approach offers several advantages:
Python libraries list includes over 200 modules written in C that provide core functionality such as input/output operations and other essential modules that make Python a powerful language.
While the Standard Library is included within Python, developers can access a vast collection of several thousand components from the Python Package Index (PyPI) separately.
The Advanced Certificate Programme in Data Science course from upGrad can further help students to delve deeper into the world of data science and understand Python’s standard library.
Here is a detailed Python modules list –
Working with Built-in Modules
Python’s Standard Library includes many inbuilt modules in Python that provide useful functionality to developers. Working with these modules is straightforward and can be done by importing the module at the beginning of your Python program using the import keyword. Here’s an example:
import math
result = math.sqrt(9)
print(result)
In this example, the math module is imported and uses its sqrt() function to calculate the square root of 9. The result is then printed to the console.
Some built-in modules require additional configuration or initialisation before they can be used. For example, the datetime module requires a call to its datetime() constructor to create a new datetime object. Here’s an example:
import datetime
now = datetime.datetime.now()
print(now)
In this example, we import the datetime module and use its datetime() constructor to create a new datetime object representing the current date and time. The resulting object is then printed to the console.
File Input and Output Modules
You can use Python inbuilt modules to read and write files in different formats in Python. There are four common file input and output modules:
This module provides functions for working with the operating system, including file input and output. It includes functions for creating, deleting, and renaming files and checking whether a file exists.
The open() function opens a file and allows you to read or write data. For instance, if you want to read a text file called “example.txt”, you can use the code with open(‘example.txt’, ‘r’) as file: data = file.read(). This code reads the file’s entire contents and stores it in the data variable. These modules are useful for working with file-based data in Python.
This module provides functions for working with CSV files, including reading and writing CSV data. It includes functions for parsing CSV data into Python objects and for converting Python objects to CSV format.
This module provides functions for serialising and deserialising Python objects, allowing you to store them in a file and then load them later. This can be useful for saving and loading program states or sharing data between programs.
Math and Statistical Modules
The math module in Python is a standard module that provides access to various mathematical functions and constants. We can import the module using the ‘import math’ statement. There are different constants in this module. They include –
Time and Date Modules
Python does not have a specific data type for dates and times. However, it provides built-in time and date modules or the ” datetime ” module that can be imported into your Python code. This module contains several classes, offering various functions that can be used to manipulate dates, times, and time intervals. The six main classes in the Python datetime module:
Regular Expression Modules
In Python, Regular Expressions are implemented using the “re” module. This module provides a set of functions that allow us to work with regular expressions. Regular expressions, also called regex, are patterns used to match character combinations in strings.
The “re” module has several functions, including:
Whether you are a beginner or an experienced developer, Python built-in modules provide powerful functionalities to help you create efficient and effective applications. By learning and understanding these modules, you can unlock the full potential of the Python language and take your programming skills to the next level.
If you’re looking to strengthen your Python skills further, the Python Programming Bootcamp from upGrad is a comprehensive online course covering Python programming fundamentals, including Python built-in modules. This course covers a wide range of topics taught by industry experts, helping to create future industry leaders!
Unlock the power of data with our Popular Data Science Courses! Gain industry-relevant skills in machine learning, AI, and analytics to boost your career.
Master Top Data Science Skills like Python, machine learning, data visualization, and AI to stay ahead in the industry. Elevate your career with in-demand expertise!
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Start Your Career in Data Science Today
Top Resources