Safa Mulani

An enthusiast in every forthcoming wonders!

What is Python strftime() function?

Hey, folks! In this article, we will be understanding the working of Python strftime() function along with its variations. So, let us get started. Python has a variety of modules that have clusters of functions to implement various functionality on the data. Python time module is used to perform manipulations regarding the different timestamp all

What is Python strftime() function? Read More »

Variants of Python type() function

Hey, folks! In this article, we will having a look at one of the important built-in function of Python in terms of debugging — Python type() function. Getting started with Python type() function Python type() function serves the purpose of debugging through-out the program. The type() function can be used to debug the data type

Variants of Python type() function Read More »

Python abs() function

Hey, folks! In this article, we will be unveiling Python abs() function with different modules such as NumPy and Pandas. Getting started with Python abs() function Python has a huge number of in-built functions to deal with mathematical and statistical operations. One such function is the Python abs() function. The abs() function returns the absolute

Python abs() function Read More »

Python eval() function

Hello, readers. In this article we will be focusing on Python eval() function. Understanding Python eval() function Python eval() function converts and computes the expressions passed to it. NOTE: Use this method only for testing purposes. The eval() function does not sanitize the expressions passed to it. It can easily become a loophole into your

Python eval() function Read More »

Python replace() function

In this article, we will be understanding the functionality of Python replace() function. Python replace() function with String Python has in-built string.replace() function to replace a porting of a string with another string. The string.replace() function accepts the string to be replaced and the new string which u want to replace the old string with.

Python replace() function Read More »