Safa Mulani

Safa Mulani

An enthusiast in every forthcoming wonders!

Python fractions Module

Python fractions module enables the user to manage fractions related computations in an efficient manner. This module enables us to create fractions from integers, floats, decimal, and strings. This fraction module supports rational number arithmetic operations. Basics of fractions module…

Python math Module

Python math module helps the user to get direct access to the mathematical functions in their program. Thus, it helps to solve and minimize complex computations. In order to avail the functionalities of the math module, we need to import…

Python Remove Spaces from String

Python provides various ways to remove white-spaces from a String. This article will focus of some of the efficient techniques to remove spaces from a String. Either of the following techniques can be used to get rid of the spaces…

Python Stack

A Stack is a Last-In-First-Out Linear data structure i.e. the element entered at the last will be the first element to be removed. In stack, the items are added at one end and these items are removed from the same…

Python Collections

A Collection is used to represent a set of similar data items as a single unit that is used to group and manage related objects. They contain data structures that are used to manipulate and store data efficiently. Python collections…

Python Not Equal operator

A comparison operator identifies the relationship between the operands and results into True or False. One such basic yet important operator is not equal operator in Python. It returns True if the values on either side of the operator are…

Python os module – 10 Must-Know Functions

Modules are basically pre-defined functions that help to reduce the redundancy to the code and add built-in functionalities to it. Python os Module allows us to interact and use the Operating System functionality efficiently. The os module allows us to…

Python sys Module

Python sys module deals with the system and environment-specific variables and parameters. We can use it to read the PATH variable and the list of command-line parameters passed to the Python script. Import sys Module in Python Before using any…

Introduction to Python Modules

Modules are the pre-defined files that contain the python codes which depict the basic functionalities of class, methods, variables, etc. It consists of different functions, classes in a group of files inside a directory. Modules can also be termed as…